Ignore:
Timestamp:
11 Jun 2011, 05:59:01 (13 years ago)
Author:
Henrik Bettermann
Message:

Fix useless python:hint condition in manage and add form templates which had been copied from megrok.layout.

Display description field attribute which should only be used in edit and add forms.

Adjust description of code fields.

File:
1 edited

Legend:

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

    r6296 r6345  
    2020    code = schema.TextLine(
    2121        title = u'Code',
    22         description = u'Abbreviated code of the faculty',
    2322        default = u'NA',
    2423        required = True,
     
    4948    code = schema.TextLine(
    5049        title = u'Code',
    51         description = u'Abbreviated code of the faculty',
     50        description = u'This code will become part of the URL.',
    5251        default = u'NA',
    5352        required = True,
     
    7170        title = u'Code',
    7271        default = u'NA',
    73         description = u'Abbreviated code of the department',
    7472        required = True,
    7573        readonly = True,
     
    102100    code = schema.TextLine(
    103101        title = u'Code',
    104         default = u'NA',
    105         description = u'Abbreviated code of the department',
     102        description = u'This code will become part of the URL.',
     103        default = u'NA',
    106104        required = True,
    107105        readonly = False,
     
    125123        title = u'Code',
    126124        default = u'NA',
    127         description = u'Abbreviated code of the course',
    128125        required = True,
    129126        readonly = True,
     
    165162    code = schema.TextLine(
    166163        title = u'Code',
    167         default = u'NA',
    168         description = u'Abbreviated code of the course',
     164        description = u'Enter unique course code which will become part of the URL.',
     165        default = u'NA',
    169166        required = True,
    170167        readonly = False,
     
    179176        title = u'Code',
    180177        default = u'NA',
    181         description = u'Abbreviated code of the certificate.',
    182178        required = True,
    183179        readonly = True,
     
    231227        title = u'Code',
    232228        default = u'NA',
    233         description = u'Abbreviated code of the certificate.',
     229        description = u'Enter unique certificate code which will become part of the URL.',
    234230        required = True,
    235231        readonly = False,
Note: See TracChangeset for help on using the changeset viewer.