[7811] | 1 | <table class="form-table" i18n:domain="waeup.kofa"> |
---|
[7738] | 2 | <thead> |
---|
| 3 | </thead> |
---|
| 4 | <tbody> |
---|
| 5 | <tal:block repeat="widget view/widgets"> |
---|
| 6 | <tr> |
---|
[10250] | 7 | <td class="fieldname"> |
---|
[7738] | 8 | <span tal:content="widget/label">label</span>: |
---|
| 9 | </td> |
---|
| 10 | <td tal:on-error="default"> |
---|
[7876] | 11 | <div tal:content="structure widget"> |
---|
[7738] | 12 | <input type="text" /> |
---|
| 13 | </div> |
---|
| 14 | </td> |
---|
| 15 | </tr> |
---|
| 16 | </tal:block> |
---|
| 17 | <tr> |
---|
| 18 | <td i18n:translate=""> |
---|
| 19 | Study Mode: |
---|
| 20 | </td> |
---|
[7876] | 21 | <td> |
---|
| 22 | <div tal:content="view/current_mode"> |
---|
| 23 | CURRENTMODE |
---|
[7738] | 24 | </div> |
---|
| 25 | </td> |
---|
| 26 | </tr> |
---|
| 27 | <tr tal:condition="python: view.department is not None"> |
---|
| 28 | <td i18n:translate=""> |
---|
| 29 | Department: |
---|
| 30 | </td> |
---|
[7876] | 31 | <td> |
---|
| 32 | <a tal:attributes="href python: view.url(view.department)" |
---|
[7738] | 33 | tal:content="view/department/longtitle"> |
---|
| 34 | DEPARTMENT |
---|
| 35 | </a> |
---|
| 36 | </td> |
---|
| 37 | </tr> |
---|
| 38 | <tr tal:condition="python: view.faculty is not None"> |
---|
| 39 | <td i18n:translate=""> |
---|
| 40 | Faculty: |
---|
| 41 | </td> |
---|
[7876] | 42 | <td> |
---|
| 43 | <a tal:attributes="href python: view.url(view.faculty)" |
---|
[7738] | 44 | tal:content="view/faculty/longtitle"> |
---|
| 45 | FACULTY |
---|
| 46 | </a> |
---|
| 47 | </td> |
---|
| 48 | </tr> |
---|
[9140] | 49 | <tr tal:condition="view/prev_studycourses"> |
---|
| 50 | <td i18n:translate=""> |
---|
| 51 | Previous Study Courses: |
---|
| 52 | </td> |
---|
| 53 | <td> |
---|
| 54 | <span tal:repeat="value view/prev_studycourses"> |
---|
| 55 | <a tal:attributes="href value/href" tal:content="value/title"> |
---|
| 56 | FACULTY |
---|
| 57 | </a> |
---|
| 58 | </span> |
---|
| 59 | </td> |
---|
| 60 | </tr> |
---|
[7738] | 61 | </tbody> |
---|
[6775] | 62 | </table> |
---|
| 63 | |
---|
[7811] | 64 | <h3 i18n:domain="waeup.kofa" i18n:translate="">Study Levels (Course Lists)</h3> |
---|
[6775] | 65 | |
---|
[11254] | 66 | <table i18n:domain="waeup.kofa" class="table"> |
---|
[6775] | 67 | <thead> |
---|
| 68 | <tr> |
---|
[7738] | 69 | <th i18n:translate="">Level Code</th> |
---|
| 70 | <th i18n:translate="">Level Title</th> |
---|
[6775] | 71 | </tr> |
---|
| 72 | </thead> |
---|
| 73 | <tbody> |
---|
[11254] | 74 | <tr tal:repeat="value context/values"> |
---|
| 75 | <td> <a tal:attributes="href python:view.url(value)"> |
---|
[6775] | 76 | <span tal:content="value/level">CODE</span></a></td> |
---|
| 77 | <td tal:content="value/level_title">TITLE</td> |
---|
| 78 | </tr> |
---|
| 79 | </tbody> |
---|
| 80 | </table> |
---|
| 81 | |
---|
| 82 | |
---|
[7738] | 83 | <div tal:condition="python: not len(context.keys())" |
---|
[7811] | 84 | i18n:domain="waeup.kofa" i18n:translate=""> |
---|
[7738] | 85 | There are no levels registered yet. |
---|
[6775] | 86 | </div> |
---|