This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
tabellio.pfbviews/tabellio/pfbviews/comevent_templates/view.pt

56 lines
2.4 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
lang="en"
metal:use-macro="context/main_template/macros/master"
i18n:domain="tabellio.agenda">
<body>
<metal:main fill-slot="main">
<tal:main-macro metal:define-macro="main"
tal:define="toLocalizedTime nocall:context/@@plone/toLocalizedTime">
<div tal:replace="structure provider:plone.abovecontenttitle" />
<h1 class="documentFirstHeading">Agenda</h1>
<div tal:replace="structure provider:plone.belowcontenttitle" />
<h2 tal:content="context/aq_parent/Title">Agenda parlementaire</h2>
<div id="agenda-view-switcher">
<a tal:attributes="href string:../calendar?navyear=${context/start/year}&navmonth=${context/start/month}">Calendrier</a> |
<a tal:attributes="href string:../?navyear=${context/start/year}&navmonth=${context/start/month}">Liste</a>
</div>
<div class="detail-agenda">
<h2><span tal:replace="context/longdatetime"/> : <span tal:replace="context/title"/></h2>
<div class="event-text" tal:condition="context/text" tal:content="structure context/text/output">
</div>
<p class="place">
Lieu : <span tal:replace="context/place"/>
</p>
<ul id="cri-stream">
<li><a href="#" class="cri" tal:condition="python: context.cri and context.cri.to_object"
tal:attributes="href context/cri/to_object/absolute_url">Rapport / Compte rendu</a>
<span class="cri" tal:condition="python: not(context.cri and context.cri.to_object)">Rapport / Compte rendu (non disponible)</span></li>
<li><a tal:attributes="href string:${context/absolute_url}/ecouter.m3u" class="streaming" tal:condition="view/has_stream">Streaming</a>
<span class="streaming" tal:condition="not: view/has_stream">Streaming (non disponible)</span></li>
</ul>
<div class="order-of-the-day" tal:condition="python: context.order_of_the_day and context.order_of_the_day.output">
<h2>Ordre du jour</h2>
<div tal:content="structure context/order_of_the_day/output"/>
</div>
</div>
<div tal:replace="structure provider:plone.belowcontentbody" />
</tal:main-macro>
</metal:main>
</body>
</html>