Last change
on this file since 15284 was
10097,
checked in by Henrik Bettermann, 12 years ago
|
Add hidden field to IApplicantsContainer and hide applicants containers if attribute is set True.
|
File size:
924 bytes
|
Line | |
---|
1 | <span tal:condition="view/introduction" tal:omit-tag=""> |
---|
2 | <span tal:content="structure view/introduction">INTRODUCTION</span> |
---|
3 | <br /> |
---|
4 | </span> |
---|
5 | |
---|
6 | <table i18n:domain="waeup.kofa"> |
---|
7 | <thead> |
---|
8 | <tr> |
---|
9 | <th i18n:translate="">Year</th> |
---|
10 | <th i18n:translate="">Code</th> |
---|
11 | <th i18n:translate="">Title</th> |
---|
12 | <th i18n:translate="">Application Period</th> |
---|
13 | </tr> |
---|
14 | </thead> |
---|
15 | <tbody> |
---|
16 | <tr tal:repeat="entry view/containers" class="gradeC"> |
---|
17 | <td tal:content="entry/year">Year |
---|
18 | </td> |
---|
19 | <td tal:content="entry/__name__">CODE |
---|
20 | </td> |
---|
21 | <td> |
---|
22 | <a href="" |
---|
23 | tal:attributes="href python:view.url(entry)" |
---|
24 | tal:content="entry/title">TITLE</a> |
---|
25 | </td> |
---|
26 | <td> |
---|
27 | <span tal:content="python: layout.formatTZDate(entry.startdate)">START</span> |
---|
28 | - |
---|
29 | <span tal:content="python: layout.formatTZDate(entry.enddate)">END</span> |
---|
30 | </td> |
---|
31 | </tr> |
---|
32 | </tbody> |
---|
33 | </table> |
---|
Note: See
TracBrowser for help on using the repository browser.