1 | <h2 i18n:translate=""
|
---|
2 | tal:condition="view/label"
|
---|
3 | tal:content="view/label">Label</h2>
|
---|
4 |
|
---|
5 | <div class="alert-message error"
|
---|
6 | tal:define="status view/status"
|
---|
7 | tal:condition="status">
|
---|
8 | Form Status:
|
---|
9 | <span i18n:translate="" tal:content="view/status">
|
---|
10 | Form status summary
|
---|
11 | </span>
|
---|
12 | </div>
|
---|
13 |
|
---|
14 | <form action="." tal:attributes="action request/URL" method="POST"
|
---|
15 | enctype="multipart/form-data">
|
---|
16 |
|
---|
17 | <h3>Course Tickets (Total Credits: <span tal:replace="view/total_credits">TOTAL</span>)</h3>
|
---|
18 | <table class="display dataTableManage">
|
---|
19 | <thead>
|
---|
20 | <tr>
|
---|
21 | <th> </th>
|
---|
22 | <th>Sem.</th>
|
---|
23 | <th>Code</th>
|
---|
24 | <th>Title</th>
|
---|
25 | <th>Department</th>
|
---|
26 | <th>Faculty</th>
|
---|
27 | <th>Credits</th>
|
---|
28 | <th>Score</th>
|
---|
29 | </tr>
|
---|
30 | </thead>
|
---|
31 | <tbody>
|
---|
32 | <tr tal:repeat="value context/values" class="gradeC">
|
---|
33 | <td>
|
---|
34 | <input type="checkbox" name="val_id"
|
---|
35 | tal:attributes="value value/__name__"
|
---|
36 | tal:condition="not: value/core_or_elective" />
|
---|
37 | </td>
|
---|
38 | <td tal:content="value/semester">SEMESTER</td>
|
---|
39 | <td> <a tal:attributes="href value/__name__">
|
---|
40 | <span tal:content="value/code">CODE</span>
|
---|
41 | </a></td>
|
---|
42 | <td tal:content="value/title">TITLE</td>
|
---|
43 | <td tal:content="value/department">DEPARTMENT</td>
|
---|
44 | <td tal:content="value/faculty">FACULTY</td>
|
---|
45 | <td tal:content="value/credits">CREDITS</td>
|
---|
46 | <td tal:content="value/score">SCORE</td>
|
---|
47 | </tr>
|
---|
48 | </tbody>
|
---|
49 | </table>
|
---|
50 |
|
---|
51 | <div tal:condition="view/availableActions">
|
---|
52 | <span tal:repeat="action view/actions"
|
---|
53 | tal:omit-tag="">
|
---|
54 | <input tal:replace="structure action/render"/>
|
---|
55 | </span>
|
---|
56 | </div>
|
---|
57 |
|
---|
58 | </form>
|
---|
59 |
|
---|
60 |
|
---|
61 |
|
---|