web/hosts/issues/html user.item,1.6,1.7
Stefan Seefeld <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/web/hosts/issues/html
In directory purcel:/tmp/cvs-serv26429
Modified Files:
user.item
Log Message:
make form a little nicer
Index: user.item
===================================================================
RCS file: /cvs/fresco/web/hosts/issues/html/user.item,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- user.item 14 Dec 2002 18:16:16 -0000 1.6
+++ user.item 14 Jan 2003 03:54:13 -0000 1.7
@@ -61,11 +61,41 @@
</tr>
<tr>
<th>notify on new issue submissions</th>
- <td tal:content="structure python:context.notify_on_new_issues.menu(size=60, height=5)">notify_on_new_issues</td>
+ <td>
+ <input name=":add:notify_on_new_issues" size="20">
+ <table tal:condition="context/notify_on_new_issues">
+ <tr>
+ <th>id</th><th>remove</th>
+ </tr>
+ <tr tal:repeat="component context/notify_on_new_issues">
+ <td><a tal:attributes="title component/description"
+ tal:content="component/name"></a>
+ </td>
+ <td>
+ <input type="checkbox" name=":remove:notify_on_new_issues" tal:attributes="value component/id">
+ </td>
+ </tr>
+ </table>
+ </td>
</tr>
<tr>
<th>add to all new nosy lists</th>
- <td tal:content="structure python:context.add_to_all_nosy_lists.menu(size=60, height=5)">add_to_all_nosy_lists</td>
+ <td>
+ <input name=":add:add_to_all_nosy_lists" size="20">
+ <table tal:condition="context/add_to_all_nosy_lists">
+ <tr>
+ <th>id</th><th>remove</th>
+ </tr>
+ <tr tal:repeat="component context/add_to_all_nosy_lists">
+ <td><a tal:attributes="title component/description"
+ tal:content="component/name"></a>
+ </td>
+ <td>
+ <input type="checkbox" name=":remove:add_to_all_nosy_lists" tal:attributes="value component/id">
+ </td>
+ </tr>
+ </table>
+ </td>
</tr>
</table>
<p tal:content="structure context/submit">submit button here</p>