loops/browser/relation_macros.pt
helmutm e95943cbf3 Work in progress: assignment of related concepts (children and parents) to concepts
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1073 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-02-13 18:53:58 +00:00

44 lines
1.3 KiB
XML

<html i18n:domain="loops">
<metal:assignments define-macro="assignments">
<form method="post" name="remove" action="."
tal:attributes="action request/URL"
tal:condition="items">
<input type="hidden" name="action" value="remove" />
<input type="hidden" name="qualifier" value="parents"
tal:attributes="value qualifier" />
<fieldset>
<legend tal:content="legend">Parent Concepts</legend>
<table class="listing" summary="Currently assigned objects">
<thead>
<tr>
<th>&nbsp;</th>
<th i18n:translate="label_title">Title</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="item items">
<td class="field">
<input class="formSelection"
type="checkbox" name="tokens:list" id="#" value=""
tal:attributes="value item/token" />
</td>
<td>
<a tal:content="item/title" href="#"
tal:attributes="href item/url">Title</a>
</td>
</tr>
</tbody>
</table>
<div class="formControls">
<input class="context" type="submit" name="form.button.Remove"
value="Remove Assignment(s)"
i18n:attributes="value" />
</div>
</fieldset>
</form>
</metal:assignments>
</html>