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="">Cred.</th> |
---|
27 | <th i18n:translate="">Mand.</th> |
---|
28 | <th i18n:translate="" tal:condition="view/show_results" >Total Score</th> |
---|
29 | <th i18n:translate="" tal:condition="view/show_results" >Grade</th> |
---|
30 | <th i18n:translate="">CO</th> |
---|
31 | <th i18n:translate="">OS</th> |
---|
32 | <th i18n:translate="">CC</th> |
---|
33 | <th i18n:translate="">Auto</th> |
---|
34 | </tr> |
---|
35 | </thead> |
---|
36 | <tbody> |
---|
37 | <tr tal:repeat="value view/translated_values"> |
---|
38 | <td tal:content="value/semester" nowrap>TERM</td> |
---|
39 | <td> <a tal:attributes="href value/url"> |
---|
40 | <span tal:content="value/code">CODE</span> |
---|
41 | </a></td> |
---|
42 | <td tal:content="value/title">TITLE</td> |
---|
43 | <td tal:content="value/credits">CREDITS</td> |
---|
44 | <td tal:content="value/mandatory">MANDATORY</td> |
---|
45 | <td tal:condition="view/show_results" tal:content="structure value/formatted_total_score|nothing">TOTALSCORE</td> |
---|
46 | <td tal:condition="view/show_results" tal:content="value/grade|nothing">GRADE</td> |
---|
47 | <td tal:content="value/carry_over">CO</td> |
---|
48 | <td tal:content="value/outstanding">OS</td> |
---|
49 | <td tal:content="value/course_category|nothing">CC</td> |
---|
50 | <td tal:content="value/automatic">AUTO</td> |
---|
51 | </tr> |
---|
52 | </tbody> |
---|
53 | </table> |
---|
54 | |
---|
55 | <p i18n:translate=""> |
---|
56 | CO: Carry-over course<br /> |
---|
57 | OS: Outstanding course<br /> |
---|
58 | CC: Course Category (C, R or E)<br /> |
---|
59 | Mand.: Mandatory course<br /> |
---|
60 | Auto: Automatically created course ticket |
---|
61 | </p> |
---|
62 | |
---|
63 | <div i18n:domain="waeup.kofa" |
---|
64 | tal:condition="python: not len(context.keys())" i18n:translate=""> |
---|
65 | The're no tickets added yet. |
---|
66 | </div> |
---|