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="">Credits</th> |
---|
18 | <th i18n:translate="">CO</th> |
---|
19 | <th i18n:translate="">OS</th> |
---|
20 | <th i18n:translate="">CC</th> |
---|
21 | </tr> |
---|
22 | </thead> |
---|
23 | <tbody> |
---|
24 | <tr tal:repeat="value view/translated_values"> |
---|
25 | <td> |
---|
26 | <input type="checkbox" name="val_id" |
---|
27 | tal:attributes="value value/__name__" |
---|
28 | tal:condition="value/removable_by_student" /> |
---|
29 | </td> |
---|
30 | <td tal:content="value/semester" nowrap>TERM</td> |
---|
31 | <td> <a tal:attributes="href value/url"> |
---|
32 | <span tal:content="value/code">CODE</span> |
---|
33 | </a></td> |
---|
34 | <td tal:content="value/title">TITLE</td> |
---|
35 | <td tal:content="value/credits">CREDITS</td> |
---|
36 | <td tal:content="value/carry_over">CO</td> |
---|
37 | <td tal:content="value/outstanding">OS</td> |
---|
38 | <td tal:content="value/course_category">CC</td> |
---|
39 | </tr> |
---|
40 | </tbody> |
---|
41 | </table> |
---|
42 | |
---|
43 | <div tal:condition="view/availableActions"> |
---|
44 | <span tal:repeat="action view/actions" |
---|
45 | tal:omit-tag=""> |
---|
46 | <input tal:replace="structure action/render"/> |
---|
47 | </span> |
---|
48 | </div> |
---|
49 | <br /><br /><br /> |
---|
50 | <div class="form-inline"> |
---|
51 | <div class="form-group"> |
---|
52 | <input class="btn btn-primary" type="submit" name="ADD" |
---|
53 | i18n:translate="" |
---|
54 | value="Add course ticket" /> |
---|
55 | </div> |
---|
56 | <div class="form-group"> |
---|
57 | <input type="text" name="course" class="form-control" |
---|
58 | tal:attributes="placeholder view/placeholder" /> |
---|
59 | </div> |
---|
60 | </div> |
---|
61 | </form> |
---|
62 | |
---|
63 | |
---|
64 | |
---|