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.
collective.dms.thesaurus/src/collective/dms/thesaurus/browser/dmskeyword_view.pt

66 lines
2.5 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.app.dexterity">
<body>
<metal:main fill-slot="content-core">
<metal:content-core define-macro="content-core">
<div id="dmskeywords-navigation">
<div id="dmskeywords-navigation-left">
<tal:parents define="widget python:view.widgets.get('broader')">
<div class="field" tal:condition="python:widget.__name__ not in ('IBasic.title', 'IBasic.description', 'title', 'description',)">
<label tal:content="widget/label" />
<br />
<div tal:content="structure widget/render" />
</div>
</tal:parents>
</div>
<div id="dmskeywords-navigation-center">
<tal:equivs define="widget python:view.widgets.get('equivs')">
<div class="field" tal:condition="python:widget.__name__ not in ('IBasic.title', 'IBasic.description', 'title', 'description',)">
<label tal:content="widget/label" />
<br />
<div tal:content="structure widget/render" />
</div>
</tal:equivs>
<tal:parents define="widget python:view.widgets.get('related')">
<div class="field" tal:condition="python:widget.__name__ not in ('IBasic.title', 'IBasic.description', 'title', 'description',)">
<label tal:content="widget/label" />
<br />
<div tal:content="structure widget/render" />
</div>
</tal:parents>
</div>
<div id="dmskeywords-navigation-right">
<div class="field"
tal:define="rel_widget python:view.widgets.get('related')">
<label tal:content="string:NT (Narrower Term)" />
<br />
<ul id="" class=""
tal:attributes="id string:form-widgets-children;
class string:contenttree-widget relatedthesauruskeywords-field;
"><li tal:repeat="value view/children"
><a class="selected-option"
href="#"
tal:content="value/label"
tal:attributes="href value/url"
/></li
></ul>
</div>
</div>
</div>
</metal:content-core>
</metal:main>
</body>
</html>