[15129] | 1 | <h2 i18n:domain="waeup.kofa" tal:condition="context/translated_state"> |
---|
[8983] | 2 | ... |
---|
| 3 | <span tal:replace="context/translated_state">APPLICATIONSTATE |
---|
| 4 | </span> |
---|
| 5 | <span tal:omit-tag="" |
---|
| 6 | i18n:translate="" tal:condition="context/suspended">(account suspended) |
---|
| 7 | </span> |
---|
| 8 | ... |
---|
[7710] | 9 | </h2> |
---|
[6303] | 10 | |
---|
[15130] | 11 | <div class="workflow" tal:condition="context/history"> |
---|
[6350] | 12 | <div tal:repeat="msg context/history/messages"> |
---|
[7710] | 13 | <span tal:replace="msg">MESSAGE</span><br /> |
---|
[6350] | 14 | </div> |
---|
[6332] | 15 | </div> |
---|
[6307] | 16 | |
---|
[15502] | 17 | <img tal:condition="python: context.__parent__.with_picture" |
---|
| 18 | src="" height="180px" tal:attributes="src view/passport_url" /> |
---|
[7240] | 19 | |
---|
[7811] | 20 | <table i18n:domain="waeup.kofa" class="form-table"> |
---|
[6254] | 21 | <tbody> |
---|
[15946] | 22 | <tal:files condition="view/file_links"> |
---|
| 23 | <tr> |
---|
| 24 | <td class="separator" colspan=2> |
---|
| 25 | Files |
---|
| 26 | </td> |
---|
| 27 | </tr> |
---|
| 28 | <tr> |
---|
| 29 | <td colspan=2> |
---|
| 30 | <span tal:replace="structure view/file_links" /> |
---|
| 31 | </td> |
---|
| 32 | </tr> |
---|
| 33 | </tal:files> |
---|
[8045] | 34 | <tal:widgets content="structure provider:widgets" /> |
---|
[9075] | 35 | <tr tal:condition="view/getCourseAdmitted"> |
---|
[7710] | 36 | <td class="fieldname" i18n:translate=""> |
---|
[7347] | 37 | Admitted Course of Study: |
---|
[6254] | 38 | </td> |
---|
| 39 | <td> |
---|
[7347] | 40 | <span tal:replace="structure view/getCourseAdmitted" /> |
---|
[6254] | 41 | </td> |
---|
| 42 | </tr> |
---|
[7240] | 43 | <tr> |
---|
[7710] | 44 | <td class="fieldname" i18n:translate=""> |
---|
[7240] | 45 | Password: |
---|
| 46 | </td> |
---|
| 47 | <td> |
---|
| 48 | <tal:password replace="view/hasPassword" /> |
---|
| 49 | </td> |
---|
[15943] | 50 | </tr> |
---|
[6254] | 51 | </tbody> |
---|
| 52 | </table> |
---|
[16059] | 53 | |
---|
| 54 | <tal:refereereports condition="view/display_refereereports"> |
---|
| 55 | <br /><br /> |
---|
| 56 | <h3 i18n:translate=""> |
---|
| 57 | Referee Reports |
---|
| 58 | </h3> |
---|
| 59 | <table i18n:domain="waeup.kofa" class="table table-condensed"> |
---|
| 60 | <thead> |
---|
| 61 | <tr> |
---|
| 62 | <th i18n:translate="">Report Id</th> |
---|
| 63 | <th i18n:translate="">Creation Date</th> |
---|
| 64 | <th i18n:translate="">Referee</th> |
---|
| 65 | <th i18n:translate="">Email Address</th> |
---|
| 66 | </tr> |
---|
| 67 | </thead> |
---|
| 68 | <tbody> |
---|
| 69 | <tr tal:repeat="cl context/refereereports"> |
---|
[16093] | 70 | <td tal:condition="not: layout/isApplicant"> <a tal:attributes="href python:view.url(cl)"> |
---|
[16059] | 71 | <span tal:content="cl/r_id">RID</span></a></td> |
---|
[16093] | 72 | <td tal:condition="layout/isApplicant"><span tal:content="cl/r_id">RID</span></td> |
---|
[16059] | 73 | <td tal:content="python: layout.formatDatetime(cl.creation_date)">CREATION DATE</td> |
---|
| 74 | <td tal:content="cl/name">REFEREE</td> |
---|
| 75 | <td tal:content="cl/email">EMAIL</td> |
---|
| 76 | </tr> |
---|
| 77 | </tbody> |
---|
| 78 | </table> |
---|
| 79 | </tal:refereereports> |
---|
| 80 | |
---|
[13886] | 81 | <tal:payments condition="view/display_payments"> |
---|
| 82 | <h3 i18n:domain="waeup.kofa" i18n:translate=""> |
---|
| 83 | Payment Tickets |
---|
| 84 | </h3> |
---|
| 85 | <table i18n:domain="waeup.kofa" class="table table-condensed"> |
---|
| 86 | <thead> |
---|
| 87 | <tr> |
---|
| 88 | <th i18n:translate="">Payment Id</th> |
---|
| 89 | <th i18n:translate="">Creation Date</th> |
---|
| 90 | <th i18n:translate="">Payment Date</th> |
---|
| 91 | <th i18n:translate="">Category</th> |
---|
| 92 | <th i18n:translate="">Item</th> |
---|
| 93 | <th i18n:translate="">State</th> |
---|
| 94 | </tr> |
---|
| 95 | </thead> |
---|
| 96 | <tbody> |
---|
[13968] | 97 | <tr tal:repeat="value context/payments"> |
---|
[13886] | 98 | <td> <a tal:attributes="href python:view.url(value)"> |
---|
| 99 | <span tal:content="value/p_id">PID</span></a></td> |
---|
| 100 | <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td> |
---|
| 101 | <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td> |
---|
| 102 | <td tal:content ="value/category">CATEGORY</td> |
---|
| 103 | <td tal:content ="value/display_item">ITEM</td> |
---|
| 104 | <td tal:content ="value/p_state_title">STATE</td> |
---|
| 105 | </tr> |
---|
| 106 | </tbody> |
---|
| 107 | </table> |
---|
| 108 | </tal:payments> |
---|