source: main/kofacustom.ekodisco/trunk/src/kofacustom/ekodisco/students/browser_templates/studycoursepage.pt @ 17929

Last change on this file since 17929 was 11278, checked in by uli, 11 years ago

Merge changes from henrik-diazo-themed.

File size: 1.4 KB
Line 
1<table class="form-table" i18n:domain="waeup.kofa">
2  <tbody>
3    <tal:block repeat="widget view/widgets">
4      <tr>
5        <td class="fieldname">
6          <span tal:content="widget/label">label</span>:
7        </td>
8        <td tal:on-error="default">
9          <div tal:content="structure widget">
10            <input type="text" />
11          </div>
12        </td>
13      </tr>
14    </tal:block>
15      <tr tal:condition="python: view.department is not None">
16        <td i18n:translate="">
17            Department:
18        </td>
19        <td>
20          <a tal:attributes="href python: view.url(view.department)"
21               tal:content="view/department/longtitle">
22            DEPARTMENT
23          </a>
24        </td>
25      </tr>
26      <tr tal:condition="python: view.faculty is not None">
27        <td i18n:translate="">
28            Faculty:
29        </td>
30        <td>
31          <a tal:attributes="href python: view.url(view.faculty)"
32               tal:content="view/faculty/longtitle">
33            FACULTY
34          </a>
35        </td>
36      </tr>
37      <tr tal:condition="view/prev_studycourses">
38        <td i18n:translate="">
39            Previous Study Courses:
40        </td>
41        <td>
42          <span tal:repeat="value view/prev_studycourses">
43            <a tal:attributes="href value/href" tal:content="value/title">
44              FACULTY
45            </a>
46          </span>
47        </td>
48      </tr>
49  </tbody>
50</table>
Note: See TracBrowser for help on using the repository browser.