1 | <form action="." tal:attributes="action request/URL" method="POST" |
---|
2 | i18n:domain="waeup.kofa" enctype="multipart/form-data"> |
---|
3 | |
---|
4 | <h3 i18n:translate=""> |
---|
5 | Course Tickets |
---|
6 | (Total Credits: |
---|
7 | <span i18n:name="total_credits" |
---|
8 | tal:replace="view/context/total_credits">TOTAL</span>) |
---|
9 | </h3> |
---|
10 | <table class="kofa-data-table dataTableManage"> |
---|
11 | <thead> |
---|
12 | <tr> |
---|
13 | <th> </th> |
---|
14 | <th i18n:translate="">Term</th> |
---|
15 | <th i18n:translate="">Code</th> |
---|
16 | <th i18n:translate="">Title</th> |
---|
17 | <th i18n:translate="">Department</th> |
---|
18 | <th i18n:translate="">Faculty</th> |
---|
19 | <th i18n:translate="">Credits</th> |
---|
20 | <th i18n:translate="">Score</th> |
---|
21 | <th i18n:translate="">CO</th> |
---|
22 | <th i18n:translate="">OS</th> |
---|
23 | </tr> |
---|
24 | </thead> |
---|
25 | <tbody> |
---|
26 | <tr tal:repeat="value view/translated_values"> |
---|
27 | <td> |
---|
28 | <input type="checkbox" name="val_id" |
---|
29 | tal:attributes="value value/__name__" |
---|
30 | tal:condition="value/removable_by_student" /> |
---|
31 | </td> |
---|
32 | <td tal:content="value/semester" nowrap>TERM</td> |
---|
33 | <td> <a tal:attributes="href value/url"> |
---|
34 | <span tal:content="value/code">CODE</span> |
---|
35 | </a></td> |
---|
36 | <td tal:content="value/title">TITLE</td> |
---|
37 | <td tal:content="value/dcode">DEPARTMENT</td> |
---|
38 | <td tal:content="value/fcode">FACULTY</td> |
---|
39 | <td tal:content="value/credits">CREDITS</td> |
---|
40 | <td tal:content="value/score|nothing">SCORE</td> |
---|
41 | <td tal:content="value/carry_over">CO</td> |
---|
42 | <td tal:content="value/outstanding">OS</td> |
---|
43 | </tr> |
---|
44 | </tbody> |
---|
45 | </table> |
---|
46 | |
---|
47 | <div tal:condition="view/availableActions"> |
---|
48 | <span tal:repeat="action view/actions" |
---|
49 | tal:omit-tag=""> |
---|
50 | <input tal:replace="structure action/render"/> |
---|
51 | </span> |
---|
52 | </div> |
---|
53 | <br /><br /><br /> |
---|
54 | <div class="form-inline"> |
---|
55 | <div class="form-group"> |
---|
56 | <input class="btn btn-primary" type="submit" name="ADD" |
---|
57 | i18n:translate="" |
---|
58 | value="Add course ticket" /> |
---|
59 | </div> |
---|
60 | <div class="form-group"> |
---|
61 | <input type="text" name="course" class="form-control" |
---|
62 | tal:attributes="placeholder view/placeholder" /> |
---|
63 | </div> |
---|
64 | </div> |
---|
65 | <br /> |
---|
66 | <p i18n:translate=""> |
---|
67 | You don't know the course code? Then select a course |
---|
68 | <a href="ctadd">here</a>. |
---|
69 | </p> |
---|
70 | </form> |
---|
71 | |
---|
72 | |
---|
73 | |
---|