annotate roundup/templates/extended/html/msg.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 6c9d6e7b120b
children 65234f56b250
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
1 <!-- $Id: msg.item,v 1.1 2001-07-23 04:21:20 richard Exp $-->
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
2 <table border=0 cellspacing=0 cellpadding=2>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
3
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
4 <tr class="strong-header">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
5 <td colspan=2>Message Information</td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
6 </td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
7
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
8 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
9 <td width=1% nowrap align=right><span class="form-label">Author</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
10 <td class="form-text"><display call="plain('author')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
11 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
12
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
13 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
14 <td width=1% nowrap align=right><span class="form-label">Recipients</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
15 <td class="form-text"><display call="plain('recipients')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
16 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
17
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
18 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
19 <td width=1% nowrap align=right><span class="form-label">Date</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
20 <td class="form-text"><display call="plain('date')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
21 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
22
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
23 <tr bgcolor="ffeaff">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
24 <td colspan=2 class="form-text">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
25 <pre><display call="plain('content')"></pre>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
26 </td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
27 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
28
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
29 <property name="files">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
30 <tr class="strong-header"><td colspan=2><b>Files</b></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
31 <tr><td colspan=2><display call="list('files')"></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
32 </property>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
33
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
34 <tr class="strong-header"><td colspan=2><b>History</b></td><tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
35 <tr><td colspan=2><display call="history()"></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
36
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
37 </table>

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