[Python-checkins] r59643 - tracker/instances/python-dev/html/issue.item.html

martin.v.loewis python-checkins at python.org
Tue Jan 1 16:39:12 CET 2008


Author: martin.v.loewis
Date: Tue Jan  1 16:39:12 2008
New Revision: 59643

Modified:
   tracker/instances/python-dev/html/issue.item.html
Log:
Add file description field.


Modified: tracker/instances/python-dev/html/issue.item.html
==============================================================================
--- tracker/instances/python-dev/html/issue.item.html	(original)
+++ tracker/instances/python-dev/html/issue.item.html	Tue Jan  1 16:39:12 2008
@@ -165,7 +165,14 @@
 
 <tr tal:condition="context/is_edit_ok">
  <th><tal:block i18n:translate="">File</tal:block>:</th>
- <td colspan=3><input type="file" name="@file" size="40"></td>
+ <td colspan=3>
+   <input type="hidden" name="@link at files" value="file-1">
+   <input type="file" name="file-1 at content" size="40">
+ </td>
+</tr>
+<tr tal:condition="context/is_edit_ok">
+ <th><tal:block i18n:translate="">File Description</tal:block>:</th>
+ <td colspan=3><input type="edit" name="file-1 at description" size="40"></td>
 </tr>
 </table>
 </fieldset>


More information about the Python-checkins mailing list