loops/organize/personal/browser/personal_macros.pt
helmutm 64db0029e6 work in progress: personal filters
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@4034 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-10-10 20:13:19 +00:00

50 lines
2.1 KiB
XML

<metal:actions define-macro="favorites_portlet"
tal:define="view nocall:context/@@favorites_view;
targetUid view/targetUid">
<div tal:repeat="item view/listFavorites">
<span style="float:right" class="delete-item">&nbsp;<a href="removeFavorite.html"
tal:attributes="href
string:${view/virtualTargetUrl}/removeFavorite.html?id=${item/uid};
title string:Remove from favorites"
i18n:attributes="title">X</a>&nbsp;</span>
<a href=""
tal:attributes="href item/url;
title item/description"
tal:content="item/title">Some object</a>
</div>
<div id="addFavorite" class="action"
tal:condition="targetUid">
<a href="addFavorite.html"
i18n:translate=""
tal:attributes="href
string:${view/virtualTargetUrl}/addFavorite.html?id=$targetUid;
title string:Add current object to favorites"
i18n:attributes="title">Add to Favorites</a>
</div>
</metal:actions>
<metal:actions define-macro="filters_portlet"
tal:define="view nocall:context/@@filters_view;
targetUid view/targetUid">
<div tal:repeat="item view/listFilters">
<span style="float:right" class="delete-item">&nbsp;<a href="removeFilter.html"
tal:attributes="href
string:${view/url}/deactivateFilter.html?id=${item/uid};
title string:Deactivate filter"
i18n:attributes="title">X</a>&nbsp;</span>
<a href=""
tal:attributes="href item/url;
title item/description"
tal:content="item/title">Some object</a>
</div>
<div id="addFilter" class="action"
tal:condition="targetUid">
<a href="addFilter.html"
i18n:translate=""
tal:attributes="href
string:${view/virtualTargetUrl}/addFilter.html?id=$targetUid;
title string:Use current object as filter"
i18n:attributes="title">Add Filter</a>
</div>
</metal:actions>