1 | <form action="." tal:attributes="action request/URL" method="POST"
|
---|
2 | enctype="multipart/form-data">
|
---|
3 |
|
---|
4 | <ul class="tabs" data-tabs="tabs">
|
---|
5 | <li tal:attributes="class view/tab1"><a href="#tab-1"><span>Study Level Data</span></a></li>
|
---|
6 | <li tal:attributes="class view/tab2"><a href="#tab-2"><span>Course Tickets</span></a></li>
|
---|
7 | </ul>
|
---|
8 |
|
---|
9 | <div class="tab-content">
|
---|
10 | <div id="tab-1" tal:attributes="class view/tab1">
|
---|
11 | <table class="form-table">
|
---|
12 | <tbody>
|
---|
13 | <tal:widgets content="structure provider:widgets" />
|
---|
14 | </tbody>
|
---|
15 | </table>
|
---|
16 | <div tal:condition="view/availableActions">
|
---|
17 | <span tal:repeat="action view/actions"
|
---|
18 | tal:omit-tag="">
|
---|
19 | <input tal:condition="python:action.label in view.taboneactions"
|
---|
20 | tal:replace="structure action/render"/>
|
---|
21 | </span>
|
---|
22 | </div>
|
---|
23 | </div>
|
---|
24 |
|
---|
25 | <div id="tab-2" tal:attributes="class view/tab2">
|
---|
26 | <h3>Course Tickets</h3>
|
---|
27 | <table class="display dataTableManage">
|
---|
28 | <thead>
|
---|
29 | <tr>
|
---|
30 | <th> </th>
|
---|
31 | <th>Sem.</th>
|
---|
32 | <th>Code</th>
|
---|
33 | <th>Title</th>
|
---|
34 | <th>Dept.</th>
|
---|
35 | <th>Fact.</th>
|
---|
36 | <th>Cred.</th>
|
---|
37 | <th>Mand.</th>
|
---|
38 | <th>Score</th>
|
---|
39 | <th>CO</th>
|
---|
40 | <th>Auto</th>
|
---|
41 | </tr>
|
---|
42 | </thead>
|
---|
43 | <tbody>
|
---|
44 | <tr tal:repeat="value context/values" class="gradeC">
|
---|
45 | <td>
|
---|
46 | <input type="checkbox" name="val_id"
|
---|
47 | tal:attributes="value value/__name__" />
|
---|
48 | </td>
|
---|
49 | <td tal:content="value/semester">SEMESTER</td>
|
---|
50 | <td> <a tal:attributes="href value/__name__">
|
---|
51 | <span tal:content="value/code">CODE</span>
|
---|
52 | </a></td>
|
---|
53 | <td tal:content="value/title">TITLE</td>
|
---|
54 | <td tal:content="value/dcode">DEPARTMENT</td>
|
---|
55 | <td tal:content="value/fcode">FACULTY</td>
|
---|
56 | <td tal:content="value/credits">CREDITS</td>
|
---|
57 | <td tal:content="value/mandatory">MANDATORY</td>
|
---|
58 | <td tal:content="value/score">SCORE</td>
|
---|
59 | <td tal:content="value/carry_over">CO</td>
|
---|
60 | <td tal:content="value/automatic">AUTO</td>
|
---|
61 | </tr>
|
---|
62 | </tbody>
|
---|
63 | </table>
|
---|
64 |
|
---|
65 | <div tal:condition="view/availableActions">
|
---|
66 | <span tal:repeat="action view/actions"
|
---|
67 | tal:omit-tag="">
|
---|
68 | <input tal:condition="python:action.label in view.tabtwoactions"
|
---|
69 | tal:replace="structure action/render"/>
|
---|
70 | </span>
|
---|
71 | </div>
|
---|
72 |
|
---|
73 | </div>
|
---|
74 | </div>
|
---|
75 | </form>
|
---|
76 |
|
---|
77 |
|
---|
78 |
|
---|