# HG changeset patch # User Sverre Rabbelier # Date 1236989542 0 # Node ID a0cae3be1412d046ab17346a91c999066905a609 # Parent 15ad1ee02dc5bcaff2636f057518cb3e54308910 Show 'List my Organization Applications' link even after signup closed Patch by: Sverre Rabbelier diff -r 15ad1ee02dc5 -r a0cae3be1412 app/soc/views/models/program.py --- a/app/soc/views/models/program.py Fri Mar 13 23:18:06 2009 +0000 +++ b/app/soc/views/models/program.py Sat Mar 14 00:12:22 2009 +0000 @@ -527,12 +527,12 @@ (redirects.getApplyRedirect(program_entity, {'url_name': 'org_app'}), "Apply to become an Organization", 'any_access')] - if user: - # add the 'List my Organization Applications' link - items += [ - (redirects.getListSelfRedirect(program_entity, - {'url_name' : 'org_app'}), - "List My Organization Applications", 'any_access')] + if user and timeline_helper.isAfterEvent(timeline_entity, 'org_signup_start'): + # add the 'List my Organization Applications' link + items += [ + (redirects.getListSelfRedirect(program_entity, + {'url_name' : 'org_app'}), + "List My Organization Applications", 'any_access')] # get the student entity for this user and program filter = {'user': user,