comparison doc/customizing.txt @ 1488:24460bef0efd maint-0.5

doc fix backported from HEAD
author Richard Jones <richard@users.sourceforge.net>
date Thu, 06 Mar 2003 04:37:36 +0000
parents 56c5b4509378
children
comparison
equal deleted inserted replaced
1482:ed404289b490 1488:24460bef0efd
1 =================== 1 ===================
2 Customising Roundup 2 Customising Roundup
3 =================== 3 ===================
4 4
5 :Version: $Revision: 1.68.2.1 $ 5 :Version: $Revision: 1.68.2.2 $
6 6
7 .. This document borrows from the ZopeBook section on ZPT. The original is at: 7 .. This document borrows from the ZopeBook section on ZPT. The original is at:
8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
9 9
10 .. contents:: 10 .. contents::
2231 the new Permission in restricting the "assignedto" list:: 2231 the new Permission in restricting the "assignedto" list::
2232 2232
2233 <select name="assignedto"> 2233 <select name="assignedto">
2234 <option value="-1">- no selection -</option> 2234 <option value="-1">- no selection -</option>
2235 <tal:block tal:repeat="user db/user/list"> 2235 <tal:block tal:repeat="user db/user/list">
2236 <option tal:condition="python:user.hasPermission('Fixer', context.classname)" 2236 <option tal:condition="python:user.hasPermission('Fixer', context._classname)"
2237 tal:attributes="value user/id; 2237 tal:attributes="value user/id;
2238 selected python:user.id == context.assignedto" 2238 selected python:user.id == context.assignedto"
2239 tal:content="user/realname"></option> 2239 tal:content="user/realname"></option>
2240 </tal:block> 2240 </tal:block>
2241 </select> 2241 </select>

Roundup Issue Tracker: http://roundup-tracker.org/