Mercurial > p > roundup > code
changeset 642:dd4c77c67de7
Added the popup help to standard templates.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 22 Feb 2002 00:06:58 +0000 |
| parents | cfa460943d4d |
| children | c59bad997042 |
| files | roundup/templates/classic/html/issue.item roundup/templates/extended/html/issue.item |
| diffstat | 2 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/templates/classic/html/issue.item Thu Feb 21 23:34:52 2002 +0000 +++ b/roundup/templates/classic/html/issue.item Fri Feb 22 00:06:58 2002 +0000 @@ -23,9 +23,11 @@ <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 class="form-text"><display call="field('superseder', size=40, showid=1)"> + <display call="classhelp('issue', 'id,title', label='list', width=500)"></td> <td width=1% nowrap align=right><span class="form-label">Nosy List</span></td> - <td class="form-text"><display call="field('nosy')"></td> + <td class="form-text"><display call="field('nosy')"> + <display call="classhelp('user', 'username,realname,address,phone', label='list', width=500)"></td> </tr> <tr bgcolor="ffffea">
--- a/roundup/templates/extended/html/issue.item Thu Feb 21 23:34:52 2002 +0000 +++ b/roundup/templates/extended/html/issue.item Fri Feb 22 00:06:58 2002 +0000 @@ -1,4 +1,4 @@ -<!-- $Id: issue.item,v 1.9 2002-01-22 00:21:32 richard Exp $--> +<!-- $Id: issue.item,v 1.10 2002-02-22 00:06:58 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr class="strong-header"> @@ -45,14 +45,17 @@ <td width=1% nowrap align=right><span class="form-label">Assigned to</span></td> <td class="form-text"><display call="menu('assignedto')"></td> <td width=1% nowrap align=right><span class="form-label">Nosy List</span></td> - <td class="form-text"><display call="field('nosy')"></td> + <td class="form-text"><display call="field('nosy')"> + <display call="classhelp('user', 'username,realname,address,phone', label='list', width=500)"></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 class="form-text"><display call="field('superseder', size=40, showid=1)"> + <display call="classhelp('issue', 'id,title', label='list', width=500)"></td> <td width=1% nowrap align=right><span class="form-label">Support call</span></td> - <td class="form-text"><display call="field('supportcall', size=40, showid=1)"></td> + <td class="form-text"><display call="field('supportcall', size=40, showid=1)"> + <display call="classhelp('support', 'id,title', label='list', width=500)"></td> </tr> <tr bgcolor="ffffea">
