Commit 7ea4977a authored by Kevin Deldycke's avatar Kevin Deldycke

Don't show unvisible object in sub_web_object_list (thanks to Kristian).

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10582 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b36d8c40
......@@ -53,7 +53,7 @@
--></tal:block>\n
\n
<ul><tal:block tal:repeat="sub_object python:context.objectValues()">\n
<li tal:condition="python: sub_object.getPortalType() in [\'Web Section\', \'Web Page\']">\n
<li tal:condition="python: sub_object.getPortalType() in [\'Web Section\', \'Web Page\'] and sub_object.getVisible()">\n
<a tal:attributes="href python: sub_object.WebSite_getDocumentUrl()"\n
tal:content="python: sub_object.ERP5Web_getVerboseTitle(priority=\'short_title\')"/>\n
</li>\n
......
2006-10-05 Kevin
* Minor fixes.
* Don't show unvisible object in sub_web_object_list (thanks to Kristian).
2006-10-04 Kevin
* New ERP5Web_getNiceURI script to transform any string to a Search Engine friendly URI.
......
488
\ No newline at end of file
490
\ No newline at end of file
0.3.45
\ No newline at end of file
0.3.46
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment