comparison doc/customizing.txt @ 1457:fd806ad85621

fix doc bug
author Richard Jones <richard@users.sourceforge.net>
date Thu, 20 Feb 2003 07:13:40 +0000
parents bbb1e5f8fc93
children 94ec56691f07
comparison
equal deleted inserted replaced
1456:745ceee35ca2 1457:fd806ad85621
1 =================== 1 ===================
2 Customising Roundup 2 Customising Roundup
3 =================== 3 ===================
4 4
5 :Version: $Revision: 1.75 $ 5 :Version: $Revision: 1.76 $
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::
2280 the new Permission in restricting the "assignedto" list:: 2280 the new Permission in restricting the "assignedto" list::
2281 2281
2282 <select name="assignedto"> 2282 <select name="assignedto">
2283 <option value="-1">- no selection -</option> 2283 <option value="-1">- no selection -</option>
2284 <tal:block tal:repeat="user db/user/list"> 2284 <tal:block tal:repeat="user db/user/list">
2285 <option tal:condition="python:user.hasPermission('Fixer', context.classname)" 2285 <option tal:condition="python:user.hasPermission('Fixer', context._classname)"
2286 tal:attributes="value user/id; 2286 tal:attributes="value user/id;
2287 selected python:user.id == context.assignedto" 2287 selected python:user.id == context.assignedto"
2288 tal:content="user/realname"></option> 2288 tal:content="user/realname"></option>
2289 </tal:block> 2289 </tal:block>
2290 </select> 2290 </select>

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