source: indico/indico/MaKaC/webinterface/tpls/events/meetings/administrative/PensionFund.tpl @ d837d1

hello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.98b2v0.99v1.0v1.1
Last change on this file since d837d1 was d837d1, checked in by Jose Benito <jose.benito.gonzalez@…>, 22 months ago

[FTR] Translation of XSLT templates to TPL.

  • Removed old css and xslt not used.
  • Added access checking in the material.
  • In the administrative tab xslt or tpl can be choosen.
  • ConferenceOtherViews? changed to use the new engine.
  • Small changes to the styles interface.
  • Closes #677.
  • Added delete minutes from #500.
  • Changed order of VS and CR from #804.
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[c87441]1<%inherit file="Administrative.tpl"/>
2
3<%!
4  allMaterial = True
5  hideTime = True
6%>
7
8<%block name="header">
9     <br/>&nbsp;<br/>
10    <table class="eventHeader">
11        <tr>
12            <td>
13                <img src="./images/CERNLogo.jpg" />
14            </td>
15            <td>
16                <div class="eventHeader">
17                    CAISSE DE PENSIONS <br />
18                    <span class="CERNTitle"> CERN </span>
19                    PENSION FUND
20                </div>
21            </td>
22            <td>
23                <img src="./images/eso-logo.gif" />
24            </td>
25        </tr>
26    </table>
27                <div align="center">
28                <hr width="50%"/>
29            </div>
30</%block>
31
32<%block name="eventMaterial">
33    % if len(conf.getAllMaterialList()) > 0:
34        % for material in conf.getAllMaterialList():
[d837d1]35            % if material.canView(accessWrapper):
36               <a href="${urlHandlers.UHMaterialDisplay.getURL(material)}">${material.getTitle()}</a>&nbsp;
37            % endif
[c87441]38        % endfor
39    % endif
40</%block>
41
Note: See TracBrowser for help on using the repository browser.