Mercurial > p > roundup > code
diff roundup/templates/extended/html/issue.item @ 673:604c84696461
link() htmltemplate function now has a "showid" option for links & multilinks.
When true, it only displays the linked node id as the anchor text. The
link value is displayed as a tooltip using the title anchor attribute.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 02 Apr 2002 01:40:59 +0000 |
| parents | dd4c77c67de7 |
| children |
line wrap: on
line diff
--- a/roundup/templates/extended/html/issue.item Fri Mar 29 19:41:48 2002 +0000 +++ b/roundup/templates/extended/html/issue.item Tue Apr 02 01:40:59 2002 +0000 @@ -1,4 +1,4 @@ -<!-- $Id: issue.item,v 1.10 2002-02-22 00:06:58 richard Exp $--> +<!-- $Id: issue.item,v 1.11 2002-04-02 01:40:59 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr class="strong-header"> @@ -51,11 +51,21 @@ <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)"> - <display call="classhelp('issue', 'id,title', label='list', width=500)"></td> + <td class="form-text"> + <display call="field('superseder', size=40, showid=1)"> + <display call="classhelp('issue', 'id,title', label='list', width=500)"> + <property name="superseder"> + <br>View: <display call="link('superseder', showid=1)"> + </property> + </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)"> - <display call="classhelp('support', 'id,title', label='list', width=500)"></td> + <td class="form-text"> + <display call="field('supportcall', size=40, showid=1)"> + <display call="classhelp('support', 'id,title', label='list', width=500)"> + <property name="supportcall"> + <br>View: <display call="link('supportcall', showid=1)"> + </property> + </td> </tr> <tr bgcolor="ffffea">
