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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<form action="setProperties" method="POST">
<table>
<tr>
<th align="left">Id</th>
<td>&dtml-id;</td>
</tr>
<tr>
<th align="left">Description</th>
<td>
<input type="text" name="description" value="&dtml-description;" size="50" />
</td>
</tr>
<tr>
<th align="left" valign="top">
<div class="form-label">
Cataloged variable matches
</div>
</th>
<td>
<table>
<dtml-in getAvailableCatalogVars>
<tr>
<th align="left">&dtml-sequence-item; =</th>
<td>
<dtml-let value="getVarMatch(_['sequence-item'])">
<input type="text" name="var_match_&dtml-sequence-item;"
value="&dtml-value;" />
</dtml-let>
</td>
</tr>
</dtml-in>
</table>
</td>
</tr>
<tr>
<th align="left" valign="top">Display in actions box</th>
<td>
<table>
<tr>
<th align="left">Name (formatted)</th>
<td>
<input type="text" name="actbox_name"
value="&dtml-actbox_name;" size="50" />
</td>
</tr>
<tr>
<th align="left">URL (formatted)</th>
<td>
<input type="text" name="actbox_url"
value="&dtml-actbox_url;" size="50" />
</td>
</tr>
<tr>
<th align="left">Category</th>
<td>
<input type="text" name="actbox_category"
value="&dtml-actbox_category;" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<th align="left" valign="top">
<div class="form-label">
Guard
</div>
</th>
<td>
<dtml-with getGuard>
<dtml-var guardForm>
</dtml-with>
</td>
</tr>
</table>
<input type="submit" name="submit" value="Save changes" />
</form>
<dtml-var manage_page_footer>
|