source: waeup_product/trunk/skins/waeup_default/university_view.py @ 98

Last change on this file since 98 was 96, checked in by joachim, 19 years ago

=adding and editing of several types

  • Property svn:keywords set to Id
File size: 431 bytes
Line 
1##parameters=REQUEST=None,psm=None,groups=None
2# $Id: university_view.py 96 2005-10-27 06:51:08Z 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()
12return context.university_view_all(psm=psm)
Note: See TracBrowser for help on using the repository browser.