Mercurial > p > roundup > code
view roundup/templates/classic/html/issue.item @ 635:3d61b5d2243e
Added popup help for classes using the classhelp html template function.
- add <display call="classhelp('priority', 'id,name,description')">
to an item page, and it generates a link to a popup window which displays
the id, name and description for the priority class. The description
field won't exist in most installations, but it will be added to the
default templates.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 21 Feb 2002 06:57:39 +0000 |
| parents | 23e7ca59eb4b |
| children | dd4c77c67de7 |
line wrap: on
line source
<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar--> <table border=0 cellspacing=0 cellpadding=2> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Title</span></td> <td colspan=3 class="form-text"><display call="field('title', size=80)"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Created</span></td> <td class="form-text"><display call="reldate('creation', pretty=1)"> (<display call="plain('creator')">)</td> <td width=1% nowrap align=right><span class="form-label">Last activity</span></td> <td class="form-text"><display call="reldate('activity', pretty=1)"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Priority</span></td> <td class="form-text"><display call="menu('priority')"></td> <td width=1% nowrap align=right><span class="form-label">Status</span></td> <td class="form-text"><display call="menu('status')"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Superseder</span></td> <td class="form-text"><display call="field('superseder', size=40, showid=1)"></td> <td width=1% nowrap align=right><span class="form-label">Nosy List</span></td> <td class="form-text"><display call="field('nosy')"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Assigned To</span></td> <td class="form-text"><display call="menu('assignedto')"></td> <td> </td> <td> </td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Change Note</span></td> <td colspan=3 class="form-text"><display call="note()"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">File</span></td> <td colspan=3 class="form-text"><input type="file" name="__file" size="80"></td> </tr> <tr bgcolor="ffffea"> <td> </td> <td colspan=3 class="form-text"><display call="submit()"></td> </tr> <tr class="msg-header"> <td colspan=4><b>Messages</b></td> </tr> <property name="messages"> <tr> <td colspan=4><display call="list('messages')"></td> </tr> </property> <tr class="file-header"> <td colspan=4><b>Files</b></td> </tr> <tr class="form-help"> <td colspan=4> <a href="newfile?:multilink=issue<display call="plain('id')">:files">Attach a file to this issue</a> </td> </tr> <property name="files"> <tr> <td colspan=4><display call="list('files')"></td> </tr> </property> <tr class="history-header"> <td colspan=4><b>History</b></td> </tr> <tr> <td colspan=4><display call="history()"></td> </tr> </table>
