Last change
on this file since 6839 was
6806,
checked in by Henrik Bettermann, 13 years ago
|
Implement AddStudyLevelFormPage? for students which add the current study level including course tickets. The page can only be called in state 'school fee paid'.
|
File size:
1.0 KB
|
Line | |
---|
1 | <h2 tal:content="view/label">TITLE</h2> |
---|
2 | |
---|
3 | <table class="zebra"> |
---|
4 | <thead> |
---|
5 | </thead> |
---|
6 | <tbody> |
---|
7 | <tal:block repeat="widget view/widgets"> |
---|
8 | <tr> |
---|
9 | <td> |
---|
10 | <label tal:attributes="for widget/name"> |
---|
11 | <span i18n:translate="" |
---|
12 | tal:content="widget/label">label</span>: |
---|
13 | </label> |
---|
14 | </td> |
---|
15 | <td class="field" tal:on-error="default"> |
---|
16 | <div class="widget" tal:content="structure widget"> |
---|
17 | <input type="text" /> |
---|
18 | </div> |
---|
19 | </td> |
---|
20 | </tr> |
---|
21 | </tal:block> |
---|
22 | </tbody> |
---|
23 | </table> |
---|
24 | |
---|
25 | <h3>Study Levels (Course Lists)</h3> |
---|
26 | |
---|
27 | |
---|
28 | <table class="zebra"> |
---|
29 | <thead> |
---|
30 | <tr> |
---|
31 | <th>Level Code</th> |
---|
32 | <th>Level Title</th> |
---|
33 | </tr> |
---|
34 | </thead> |
---|
35 | <tbody> |
---|
36 | <tr tal:repeat="value context/values"> |
---|
37 | <td> <a tal:attributes="href value/__name__"> |
---|
38 | <span tal:content="value/level">CODE</span></a></td> |
---|
39 | <td tal:content="value/level_title">TITLE</td> |
---|
40 | </tr> |
---|
41 | </tbody> |
---|
42 | </table> |
---|
43 | |
---|
44 | |
---|
45 | <div tal:condition="python: not len(context.keys())"> |
---|
46 | There are no levels registered yet. |
---|
47 | </div> |
---|
Note: See
TracBrowser for help on using the repository browser.