source: WAeUP_SRP/trunk_not_used/skins/waeup_student/getApplicantsStatistics.py @ 2790

Last change on this file since 2790 was 2148, checked in by Henrik Bettermann, 17 years ago

add applicants statistics

File size: 910 bytes
Line 
1## Script (Python) "getApplicantsStatistics"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: getApplicantsStatistics.py 1277 2007-01-11 21:11:37Z joachim $
11"""
12return Student Statistics
13"""
14
15import logging
16logger = logging.getLogger('Skins.getApplicantsStatistics')
17
18logger.info('%s invoked statistics' % context.portal_membership.getAuthenticatedMember())
19if not context.isStaff():
20    return 'Not allowed'
21
22
23info = {}
24res_entered = context.applicants_catalog(status = 'entered')
25res_edited = context.applicants_catalog(status = 'edited')
26res_submitted = context.applicants_catalog(status = 'submitted')
27info['entered'] = len(res_entered)
28info['edited'] = len(res_edited)
29info['submitted'] = len(res_submitted)
30info['pin_entered'] = info['entered'] + info['submitted'] + info['edited']
31
32
33return info
34
35
36
Note: See TracBrowser for help on using the repository browser.