add div with id for easier styling

This commit is contained in:
Frédéric Péters 2011-11-16 18:54:13 +01:00
parent 3f15a637b3
commit d7c640d08b
1 changed files with 6 additions and 4 deletions

View File

@ -16,6 +16,7 @@
<div tal:replace="structure provider:plone.abovecontentbody" />
<div id="composition-commission">
<h2>Composition</h2>
<h3>Président(e)</h3>
@ -71,8 +72,9 @@
</ul>
</div>
</div>
</div>
<div tal:condition="context/competences">
<div id="competences-commission" tal:condition="context/competences">
<h2>Compétences</h2>
<ul>
<li tal:repeat="item context/competences" tal:content="item">item</li>
@ -87,12 +89,12 @@
</ul>
</div>
<tal:block tal:define="meetings view/get_meetings" tal:condition="meetings">
<div id="commissions-reunions" tal:define="meetings view/get_meetings" tal:condition="meetings">
<h2>Dernières réunions</h2>
<ul>
<li tal:repeat="item meetings"><a tal:attributes="href item/getURL" tal:content="python: item.getObject().shortdatetime"/></li>
<li tal:repeat="item meetings"><a tal:attributes="href item/getURL" tal:content="python: item.getObject().shortdatetime">...</a></li>
</ul>
</tal:block>
</div>
<div tal:replace="structure provider:plone.belowcontentbody" />