Mercurial > p > roundup > code
diff templates/minimal/html/_generic.item.html @ 2841:60b2b9f55174
fix: don't make edit field for 'actor' property
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sat, 30 Oct 2004 05:24:17 +0000 |
| parents | 56fa27e99620 |
| children | a9f6eb633452 |
line wrap: on
line diff
--- a/templates/minimal/html/_generic.item.html Fri Oct 29 20:39:31 2004 +0000 +++ b/templates/minimal/html/_generic.item.html Sat Oct 30 05:24:17 2004 +0000 @@ -22,8 +22,8 @@ <table class="form"> <tr tal:repeat="prop python:db[context._classname].properties()"> - <tal:block tal:condition="python:prop._name not in ('id', 'creator', - 'creation', 'activity')"> + <tal:block tal:condition="python:prop._name not in ('id', + 'creator', 'creation', 'actor', 'activity')"> <th tal:content="prop/_name"></th> <td tal:content="structure python:context[prop._name].field()"></td> </tal:block>
