Mercurial > p > roundup > code
annotate roundup/templates/extended/html/msg.item @ 928:23c9d4f86380
Added the web access and email access permissions..
...so people can restrict access to users who register through the
email interface (for example). Also added "security" command to the
roundup-admin interface to display the Role/Permission config for an
instance.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 01 Aug 2002 00:56:22 +0000 |
| parents | 65234f56b250 |
| children |
| rev | line source |
|---|---|
|
733
65234f56b250
changed the default message list in issues to display the message body
Richard Jones <richard@users.sourceforge.net>
parents:
34
diff
changeset
|
1 <!-- $Id: msg.item,v 1.2 2002-05-22 00:32:34 richard Exp $--> |
|
34
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"> |
|
733
65234f56b250
changed the default message list in issues to display the message body
Richard Jones <richard@users.sourceforge.net>
parents:
34
diff
changeset
|
25 <pre><display call="plain('content', escape=1)"></pre> |
|
34
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> |
