[15293] | 1 | <table class="form-table" i18n:domain="waeup.kofa"> |
---|
| 2 | <tbody> |
---|
| 3 | <tal:block repeat="widget view/widgets"> |
---|
| 4 | <tr> |
---|
| 5 | <td class="fieldname"> |
---|
| 6 | <span tal:content="widget/label">label</span>: |
---|
| 7 | </td> |
---|
| 8 | <td tal:on-error="default"> |
---|
| 9 | <div tal:content="structure widget"> |
---|
| 10 | <input type="text" /> |
---|
| 11 | </div> |
---|
| 12 | </td> |
---|
| 13 | </tr> |
---|
| 14 | </tal:block> |
---|
| 15 | </tbody> |
---|
| 16 | </table> |
---|
| 17 | |
---|
| 18 | <h3 i18n:domain="waeup.kofa" i18n:translate="">Course Tickets</h3> |
---|
| 19 | |
---|
| 20 | <table class="kofa-data-table dataTable" i18n:domain="waeup.kofa"> |
---|
| 21 | <thead> |
---|
| 22 | <tr> |
---|
| 23 | <th i18n:translate="">Term</th> |
---|
| 24 | <th i18n:translate="">Code</th> |
---|
| 25 | <th i18n:translate="">Title</th> |
---|
| 26 | <th i18n:translate="">Dep.</th> |
---|
| 27 | <th i18n:translate="">Fac.</th> |
---|
| 28 | <th i18n:translate="">Cred.</th> |
---|
| 29 | <th i18n:translate="">Requ.</th> |
---|
| 30 | <th i18n:translate="">Score</th> |
---|
| 31 | <th i18n:translate="">Grade</th> |
---|
| 32 | <th i18n:translate="">CO</th> |
---|
| 33 | <th i18n:translate="">OS</th> |
---|
[15294] | 34 | <th i18n:translate="">CC</th> |
---|
[15293] | 35 | <th i18n:translate="">Auto</th> |
---|
| 36 | </tr> |
---|
| 37 | </thead> |
---|
| 38 | <tbody> |
---|
| 39 | <tr tal:repeat="value view/translated_values"> |
---|
| 40 | <td tal:content="value/semester" nowrap>TERM</td> |
---|
| 41 | <td> <a tal:attributes="href value/url"> |
---|
| 42 | <span tal:content="value/code">CODE</span> |
---|
| 43 | </a></td> |
---|
| 44 | <td tal:content="value/title">TITLE</td> |
---|
| 45 | <td tal:content="value/dcode">DEPARTMENT</td> |
---|
| 46 | <td tal:content="value/fcode">FACULTY</td> |
---|
| 47 | <td tal:content="value/credits">CREDITS</td> |
---|
| 48 | <td tal:content="value/mandatory">MANDATORY</td> |
---|
| 49 | <td tal:content="value/score|nothing">SCORE</td> |
---|
| 50 | <td tal:content="value/grade|nothing">GRADE</td> |
---|
| 51 | <td tal:content="value/carry_over">CO</td> |
---|
| 52 | <td tal:content="value/outstanding">OS</td> |
---|
[15294] | 53 | <td tal:content="value/course_category|nothing">CC</td> |
---|
[15293] | 54 | <td tal:content="value/automatic">AUTO</td> |
---|
| 55 | </tr> |
---|
| 56 | </tbody> |
---|
| 57 | </table> |
---|
| 58 | |
---|
| 59 | <p i18n:translate=""> |
---|
| 60 | CO: Carry-over course<br /> |
---|
| 61 | OS: Outstanding course<br /> |
---|
[15294] | 62 | CC: Course Category (C or E)<br /> |
---|
[15293] | 63 | Requ.: Required course<br /> |
---|
| 64 | Auto: Automatically created course ticket |
---|
| 65 | </p> |
---|
| 66 | |
---|
| 67 | <div i18n:domain="waeup.kofa" |
---|
| 68 | tal:condition="python: not len(context.keys())" i18n:translate=""> |
---|
| 69 | The're no tickets added yet. |
---|
| 70 | </div> |
---|