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.friendshipgroups/tabellio/friendshipgroups/folder.pt

52 lines
1.8 KiB
XML

<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="plone">
<body>
<metal:main fill-slot="main">
<tal:main-macro metal:define-macro="main">
<div tal:replace="structure provider:plone.abovecontenttitle" />
<h1 metal:use-macro="context/kss_generic_macros/macros/generic_title_view">Title</h1>
<div tal:replace="structure provider:plone.belowcontenttitle" />
<tal:block tal:repeat="item context/values">
<div class="collapsible_content_container_holder"
tal:condition="python: item.portal_type == 'tabellio.friendshipgroups.group'">
<div tal:attributes="class python: 'collapsible_content_container %s' % (repeat['item'].start and 'opened' or 'collapsed')">
<dl class="collapsible">
<dt class="collapsibleHeader" tal:content="item/Title">Maroc</dt>
<dd class="collapsibleContent">
<div class="inner">
<div class="tabs_container">
<dl class="enableFormTabbing">
<dt>Mémomrandum</dt>
<dd>
<div tal:condition="item/memorandum" tal:content="structure item/memorandum/output"/>
</dd>
<dt>Comptes-rendus</dt>
<dd>
<div tal:condition="item/minutes" tal:content="structure item/minutes/output"/>
</dd>
</dl>
</div>
</div>
</dd>
</dl>
</div>
</div>
</tal:block>
<div tal:replace="structure provider:plone.belowcontentbody" />
</tal:main-macro>
</metal:main>
</body>
</html>