diff zpt/staff/edit_talks.zpt @ 170:485bf377913a

fix staff editing pages.
author casties
date Fri, 07 Jun 2013 16:29:34 +0200
parents ee79f6ba8d01
children 2598210ada7a
line wrap: on
line diff
--- a/zpt/staff/edit_talks.zpt	Fri Jun 07 12:47:11 2013 +0200
+++ b/zpt/staff/edit_talks.zpt	Fri Jun 07 16:29:34 2013 +0200
@@ -5,55 +5,56 @@
 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:talks" />
 
 <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
-  <form action="" method="post">
+  <form tal:attributes="action string:$root/editTalks" method="post">
   <input type="hidden" name="key_main" tal:attributes="value python:here.content.key">
   <input type="hidden" name="main_fields" value="talks__title">
-  <table tal:define="founds2 python:here.getTalks(published=False)">
+  <table tal:define="talks python:here.getTalks(published=False)">
     <tr>
       <th>Date</th>
       <th>Title/Place/Link</th>
       <th>Priority</th>
       <th>Show</th>
     </tr>
-    <tr tal:repeat="found2 founds2">
+    <tr tal:repeat="talk talks">
       <td valign="top">
-        <input tal:attributes="name python:'talks__date__'+str(found2.oid); 
-				     value found2/date" size="10" />
+        <input tal:attributes="name python:'talks__date__'+str(talk.oid); value talk/date" size="10" />
       </td>
       <td>
-        <input tal:attributes="name python:'talks__title__'+str(found2.oid); 
-				     value python:found2.title" size="80" /><br>
-        <input tal:attributes="name python:'talks__place__'+str(found2.oid); 
-				     value python:found2.place" size="80" /><br>
-        <input tal:attributes="name python:'talks__link__'+str(found2.oid); 
-				     value python:found2.link" size="80" />
+        <input tal:attributes="name python:'talks__title__'+str(talk.oid); value python:talk.title" size="80" /><br>
+        <input tal:attributes="name python:'talks__place__'+str(talk.oid); value python:talk.place" size="80" /><br>
+        <input tal:attributes="name python:'talks__link__'+str(talk.oid); value python:talk.link" size="80" />
       </td>
       <td valign="top">
-        <input tal:attributes="name python:'talks__priority__'+str(found2.oid); value found2/priority" size="3" />
+        <input tal:attributes="name python:'talks__priority__'+str(talk.oid); value talk/priority" size="3" />
       </td>
-      <td valign="top" tal:define="name string:talks__published__${found2/oid}; value found2/published;">
+      <td valign="top" tal:define="name string:talks__published__${talk/oid}; value talk/published;">
           <span metal:use-macro="here/common_template/macros/yesno_input_radio"/>
       </td>
       <td>
-        <a tal:attributes="href python:'deleteField?table=talks&key=%s'%found2.oid">delete</a>
+        <a tal:attributes="href string:$root/deleteField?table=talks&key=${talk/oid}">delete</a>
       </td>
     </tr>
     <tr colspan="4">
-      <td>Add new</td>
+      <th>Add new</th>
     </tr>
     <tr>
       <td valign="top"><input tal:attributes="name python:'talks__date__new'" size="10" /></td>
-      <td><input tal:attributes="name python:'talks__title__new'" size="80"> <br>
-      <input tal:attributes="name python:'talks__place__new'" size="80" /> <br>
-      <input tal:attributes="name python:'talks__link__new'" size="80" /></td>
-      <td><input tal:attributes="name python:'talks__priority__new'" size="3"></td>
+      <td>
+        <input tal:attributes="name python:'talks__title__new'" size="80"/> <br/>
+        <input tal:attributes="name python:'talks__place__new'" size="80" /> <br/>
+        <input tal:attributes="name python:'talks__link__new'" size="80" />
+      </td>
+      <td>
+        <input tal:attributes="name python:'talks__priority__new'" size="3">
+      </td>
       <td valign="top" tal:define="name string:talks__published__new; value string:yes;">
-          <span metal:use-macro="here/common_template/macros/yesno_input_radio"/>
+        <span metal:use-macro="here/common_template/macros/yesno_input_radio"/>
       </td>
     </tr>
   </table>
-  <input type="submit" value="submit">
-
+  <p>
+    <input type="submit" value="submit"/>
+  </p>
   </form>
 </tal:block>
 </body>