Ignore:
Timestamp:
13 Feb 2022, 17:53:20 (3 years ago)
Author:
Henrik Bettermann
Message:

Add fields.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py

    r16798 r16803  
    941941        title = _(u'Referees'),
    942942        value_type = RefereeEntryField(),
     943        description = _(u'Maximum 3 referees'),
    943944        required = True,
    944945        defaultFactory=list,
     
    17341735    """
    17351736
     1737    referee_rank = schema.TextLine(
     1738        title = _(u'Referee Rank or Profession'),
     1739        required = False,
     1740        )
     1741
     1742    referee_inst = schema.TextLine(
     1743        title = _(u'Referee Institution/University'),
     1744        required = False,
     1745        )
     1746
    17361747    duration = schema.Text(
    17371748        title = _(u'How long and in what capacity have you known the candidate?'),
     
    17881799        )
    17891800
    1790     promise = schema.Choice(
    1791         title = _(u'Candidate\'s overall promise'),
    1792         required = False,
    1793         readonly = False,
    1794         vocabulary = overallpromise_vocab,
    1795         )
     1801    #promise = schema.Choice(
     1802    #    title = _(u'Candidate\'s overall promise'),
     1803    #    required = False,
     1804    #    readonly = False,
     1805    #    vocabulary = overallpromise_vocab,
     1806    #    )
    17961807
    17971808    report = schema.Text(
Note: See TracChangeset for help on using the changeset viewer.