include start hour in last meetings listing (#1005)

This commit is contained in:
Frédéric Péters 2011-11-25 10:31:57 +01:00
parent db041f42da
commit 60faca44a0
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@
<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">...</a></li>
<li tal:repeat="item meetings"><a tal:attributes="href item/getURL" tal:content="python: '%s - %s' % (item.getObject().shortdatetime, item.getObject().start_hour())">...</a></li>
</ul>
</div>