36
36
class SubjectsView(XHTMLView):
37
37
'''The view of the list of subjects.'''
38
38
template = 'subjects.html'
41
41
def authorize(self, req):
42
42
return req.user is not None
44
44
def populate(self, req, ctx):
67
47
class Plugin(ViewPlugin, MediaPlugin):