[Python-checkins] r60864 - tracker/instances/jobs/html/offer.item.html

martin.v.loewis python-checkins at python.org
Sat Feb 16 19:32:33 CET 2008


Author: martin.v.loewis
Date: Sat Feb 16 19:32:33 2008
New Revision: 60864

Modified:
   tracker/instances/jobs/html/offer.item.html
Log:
Fix cut-n-paste error.


Modified: tracker/instances/jobs/html/offer.item.html
==============================================================================
--- tracker/instances/jobs/html/offer.item.html	(original)
+++ tracker/instances/jobs/html/offer.item.html	Sat Feb 16 19:32:33 2008
@@ -53,22 +53,22 @@
 </tr>
 
 <tr>
- <th>Company</th>
+ <th>Organization</th>
  <td tal:condition="context/organization/is_edit_ok"
      tal:content="structure python:context.organization.field(size=60)"></td>
  <td tal:condition="not:context/organization/is_edit_ok">
   <span tal:content="structure context/organization/plain"/>
-  <input type="hidden" name="title" tal:attributes="value context/organization">
+  <input type="hidden" name="organization" tal:attributes="value context/organization">
  </td>
 </tr>
 
 <tr>
- <th>Company URL (optional)</th>
+ <th>Organization URL (optional)</th>
  <td tal:condition="context/organization_url/is_edit_ok"
      tal:content="structure python:context.organization_url.field(size=60)">OK</td>
  <td tal:condition="not:context/organization_url/is_edit_ok">
   <span tal:content="structure context/organization_url/plain"/>
-  <input type="hidden" name="title" tal:attributes="value context/organization_url">
+  <input type="hidden" name="organization_url" tal:attributes="value context/organization_url">
  </td>
 </tr>
 
@@ -78,7 +78,7 @@
      tal:content="structure context/agency/field">OK</td>
  <td tal:condition="not:context/agency/is_edit_ok">
   <span tal:content="structure context/agency/plain"/>
-  <input type="hidden" name="title" tal:attributes="value context/agency">
+  <input type="hidden" name="agency" tal:attributes="value context/agency">
  </td>
 </tr>
 
@@ -88,7 +88,7 @@
      tal:content="structure python:context.location.field(size=60)">OK</td>
  <td tal:condition="not:context/location/is_edit_ok">
   <span tal:content="structure context/location/plain"/>
-  <input type="hidden" name="title" tal:attributes="value context/location">
+  <input type="hidden" name="location" tal:attributes="value context/location">
  </td>
 </tr>
 


More information about the Python-checkins mailing list