Ignore:
Timestamp:
3 Sep 2011, 02:31:36 (13 years ago)
Author:
uli
Message:

Make student_id and password part of student interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/students/interfaces.py

    r6651 r6665  
    2727        """
    2828
     29    student_id = schema.TextLine(
     30        title = u'Student ID',
     31        required = True,
     32        )
     33
    2934    name = schema.TextLine(
    3035        title = u'Full Name',
    3136        default = u'Nobody',
    3237        required = True,
     38        )
     39
     40    password = schema.TextLine(
     41        title = u'Password',
    3342        )
    3443
Note: See TracChangeset for help on using the changeset viewer.