File: worklists.dtml

package info (click to toggle)
zope-cmfworkflow 0.4.1-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 324 kB
  • ctags: 274
  • sloc: python: 1,808; makefile: 49; sh: 39
file content (51 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<form action="&dtml-absolute_url;" method="POST">
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<dtml-in values sort=id>
 <tr bgcolor="#eeeeee">
  <th align="left" colspan="2">
   <input type="checkbox" name="ids:list" value="&dtml-id;" />
   <a href="&dtml.url_quote-id;/manage_properties">&dtml-id;</a>
   &nbsp;
   &dtml-description;
  </th>
 </tr>

 <tr>
  <th width="10%"></th>
  <td>
   <dtml-if name_fmt>
    Name format: <code>&dtml-name_fmt;</code><br />
   </dtml-if>
   <dtml-if var_matches>
    Catalog matches:
    <dtml-in expr="var_matches.items()" sort>
     <code>&dtml-sequence-key;</code> = <code>&dtml-sequence-item;</code>
    <dtml-unless sequence-end>;</dtml-unless>
    </dtml-in>
    <br />
   </dtml-if>
   <dtml-if getGuardSummary>
    <dtml-var getGuardSummary><br />
   </dtml-if>
  </td>
 </tr>
<dtml-else>
 <tr><td><em>No worklists defined.</em></td></tr>
</dtml-in>
</table>
<dtml-if values>
<input type="submit" name="manage_renameForm:method" value="Rename" />
<input type="submit" name="deleteWorklists:method" value="Delete" />
</dtml-if>
</form>

<hr />
<form action="addWorklist" method="POST">
<h3>Add a worklist</h3>
<p>Id <input type="text" name="id" value="" />
<input type="submit" name="submit" value="Add" /></p>
</form>

<dtml-var manage_page_footer>