source: WAeUP_SRP/branches/srpp_branch/skins/waeup_faculty/academics_view.py @ 2348

Last change on this file since 2348 was 114, checked in by joachim, 19 years ago

=added missing files

  • Property svn:keywords set to Id
File size: 574 bytes
Line 
1##parameters=REQUEST=None,psm=None,groups=None
2# $Id: academics_view.py 114 2005-10-28 10:58:58Z joachim $
3
4"""Default view for the forum. If post_id is not None, post with id = <post_id>
5will be displayed, otherwise first post will be displayed."""
6
7member = context.portal_membership.getAuthenticatedMember()
8
9if not context.portal_membership.isAnonymousUser():
10    if 'Manager' in member.getRoles():
11        return context.folder_view()
12index = getattr(context,'documents',None)
13if index:
14    fp = getattr(index,'academicsfrontpage',None)
15    if fp:
16        return fp()
17return context.academics.academics_view_all(psm=psm)
Note: See TracBrowser for help on using the repository browser.