Ignore:
Timestamp:
28 Oct 2015, 08:16:19 (9 years ago)
Author:
Henrik Bettermann
Message:

Tell if student record has been created.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py

    r13282 r13356  
    13601360            self.submitted = False
    13611361            self.not_submitted = False
     1362            self.created = False
    13621363            if applicant.state in (ADMITTED, CREATED):
    13631364                self.admitted = True
     1365            if applicant.state in (CREATED):
     1366                self.created = True
    13641367            if applicant.state in (NOT_ADMITTED,):
    13651368                self.not_admitted = True
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt

    r13254 r13356  
    6666  </tal:admitted>
    6767
     68  <tal:created condition="view/created">
     69    <br />
     70    <p i18n:translate="">
     71      Your student record has already been created for you. Please
     72      login and check your new student credentials.
     73    </p>
     74  </tal:created>
     75
    6876  <tal:notadmitted condition="view/not_admitted">
    6977    <p i18n:translate="">
Note: See TracChangeset for help on using the changeset viewer.