source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studylevelremarkpage.pt @ 15333

Last change on this file since 15333 was 15333, checked in by Henrik Bettermann, 6 years ago

Add transcript_remark field to study levels. Add page to allow
transcript officers editing the field during transcript processing.

Tests will follow!

File size: 2.7 KB
Line 
1<form action="." tal:attributes="action request/URL" method="POST"
2      i18n:domain="waeup.kofa" enctype="multipart/form-data">
3
4  <ul class="tabs nav nav-tabs" data-tabs="tabs">
5    <li class="active">
6      <a href="#tab1" data-toggle="tab">
7        <span i18n:translate="">Study Level Data</span>
8      </a>
9    </li>
10    <li>
11      <a href="#tab2" data-toggle="tab">
12        <span i18n:translate="">Course Tickets</span>
13      </a>
14    </li>
15  </ul>
16
17  <div class="tab-content">
18    <div id="tab1" class="active tab-pane">
19      <br />
20      <table class="form-table">
21      <tbody>
22        <tal:widgets content="structure provider:widgets" />
23      </tbody>
24      </table>
25      <br />
26      <div tal:condition="view/availableActions">
27        <span tal:repeat="action view/actions"
28              tal:omit-tag="">
29          <input tal:replace="structure action/render"/>
30        </span>
31      </div>
32    </div>
33
34    <div id="tab2" class="tab-pane">
35      <br /><br />
36      <table class="kofa-data-table dataTable" i18n:domain="waeup.kofa">
37        <thead>
38          <tr>
39            <th i18n:translate="">Term</th>
40            <th i18n:translate="">Code</th>
41            <th i18n:translate="">Title</th>
42            <th i18n:translate="">Dep.</th>
43            <th i18n:translate="">Fac.</th>
44            <th i18n:translate="">Cred.</th>
45            <th i18n:translate="">Requ.</th>
46            <th i18n:translate="">Score</th>
47            <th i18n:translate="">Grade</th>
48            <th i18n:translate="">CO</th>
49            <th i18n:translate="">OS</th>
50            <th i18n:translate="">Auto</th>
51          </tr>
52        </thead>
53        <tbody>
54          <tr tal:repeat="value view/translated_values">
55            <td tal:content="value/semester" nowrap>TERM</td>
56            <td> <a tal:attributes="href value/url">
57            <span tal:content="value/code">CODE</span>
58            </a></td>
59            <td tal:content="value/title">TITLE</td>
60            <td tal:content="value/dcode">DEPARTMENT</td>
61            <td tal:content="value/fcode">FACULTY</td>
62            <td tal:content="value/credits">CREDITS</td>
63            <td tal:content="value/mandatory">MANDATORY</td>
64            <td tal:content="value/score|nothing">SCORE</td>
65            <td tal:content="value/grade|nothing">GRADE</td>
66            <td tal:content="value/carry_over">CO</td>
67            <td tal:content="value/outstanding">OS</td>
68            <td tal:content="value/automatic">AUTO</td>
69          </tr>
70        </tbody>
71      </table>
72
73      <p i18n:translate="">
74        CO: Carry-over course<br />
75        OS: Outstanding course<br />
76        Requ.: Required course<br />
77        Auto: Automatically created course ticket
78      </p>
79    </div>
80  </div>
81</form>
82
83
84
Note: See TracBrowser for help on using the repository browser.