Last change
on this file since 17952 was
1219,
checked in by Henrik Bettermann, 18 years ago
|
waeup_default/waeup_document_view slimmed down and fixed
|
File size:
430 bytes
|
Line | |
---|
1 | ## Script (Python) "getStudentNameInContext" |
---|
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: getStudentName.py 1162 2006-12-31 09:39:14Z henrik $ |
---|
11 | """ |
---|
12 | return Info about the current Student in context |
---|
13 | """ |
---|
14 | id = context.getStudentId() |
---|
15 | res = context.students_catalog(id = id) |
---|
16 | if len(res) != 1: |
---|
17 | return None |
---|
18 | return res[0].name |
---|
Note: See
TracBrowser for help on using the repository browser.