source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studyleveleditpage.pt @ 7108

Last change on this file since 7108 was 6808, checked in by Henrik Bettermann, 13 years ago

Add StudyLevelEditFormPage? and CourseTicketAddFormPage2. Both can be used by students who have restricted access to course lists.

File size: 1.6 KB
Line 
1<h2 i18n:translate=""
2tal:condition="view/label"
3tal:content="view/label">Label</h2>
4
5<div class="form-status"
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      class="edit-form" 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>&nbsp;</th>
22      <th>Code</th>
23      <th>Title</th>
24      <th>Department</th>
25      <th>Faculty</th>
26      <th>Credits</th>
27      <th>Score</th>
28    </tr>
29  </thead>
30  <tbody>
31    <tr tal:repeat="value context/values">
32       <td>
33        <input type="checkbox" name="val_id"
34                  tal:attributes="value value/__name__"
35        tal:condition="not: value/core_or_elective" />
36      </td>
37      <td> <a tal:attributes="href value/__name__">
38      <span tal:content="value/code">CODE</span>
39      </a></td>
40      <td tal:content="value/title">TITLE</td>
41      <td tal:content="value/department">DEPARTMENT</td>
42      <td tal:content="value/faculty">FACULTY</td>
43      <td tal:content="value/credits">CREDITS</td>
44      <td tal:content="value/score">SCORE</td>
45    </tr>
46  </tbody>
47  </table>
48
49  <div class="actionButtons" tal:condition="view/availableActions">
50    <span tal:repeat="action view/actions"
51          tal:omit-tag="">
52      <input tal:replace="structure action/render"/>
53    </span>
54  </div>
55
56</form> 
57
58
59
Note: See TracBrowser for help on using the repository browser.