Mercurial > p > roundup > code
annotate roundup/templates/extended/issue.filter @ 32:b475e7d3ce52
actually quit if python version wrong
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 04:05:05 +0000 |
| parents | a3e119154b11 |
| children |
| rev | line source |
|---|---|
|
28
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
1 <!-- $Id: issue.filter,v 1.1 2001-07-23 03:50:46 anthonybaxter Exp $--> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
2 <property name="title"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
3 <tr><th width="1%" align="right" class="location-bar">Title</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
4 <td><display call="field('title')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
5 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
6 <property name="status"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
7 <tr><th width="1%" align="right" class="location-bar">Status</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
8 <td><display call="checklist('status')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
9 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
10 <property name="priority"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
11 <tr><th width="1%" align="right" class="location-bar">Priority</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
12 <td><display call="checklist('priority')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
13 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
14 <property name="platform"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
15 <tr><th width="1%" align="right" class="location-bar">Platform</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
16 <td><display call="checklist('platform')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
17 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
18 <property name="product"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
19 <tr><th width="1%" align="right" class="location-bar">Product</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
20 <td><display call="checklist('product')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
21 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
22 <property name="version"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
23 <tr><th width="1%" align="right" class="location-bar">Version</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
24 <td><display call="field('version')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
25 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
26 <property name="source"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
27 <tr><th width="1%" align="right" class="location-bar">Source</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
28 <td><display call="checklist('source')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
29 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
30 <property name="assignedto"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
31 <tr><th width="1%" align="right" class="location-bar">Assigned to</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
32 <td><display call="checklist('assignedto')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
33 </property> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
34 <property name="customername"> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
35 <tr><th width="1%" align="right" class="location-bar">Customer name</th> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
36 <td><display call="field('customername')"></td></tr> |
|
a3e119154b11
moved templates to proper location
Anthony Baxter <anthonybaxter@users.sourceforge.net>
parents:
diff
changeset
|
37 </property> |
