[Zope-CVS] CVS: Products/Scheduler/www - manage_current_tasks.zpt:1.4
Ken Manheimer
klm@zope.com
Thu, 15 Aug 2002 12:54:08 -0400
Update of /cvs-repository/Products/Scheduler/www
In directory cvs.zope.org:/tmp/cvs-serv20515
Modified Files:
manage_current_tasks.zpt
Log Message:
Somewhat cosmetic change of 'current_task' variable name to
'current_task_info', so others aren't mislead (as i was, for a while)
into thinking we have a task object rather than a report from the
object.
=== Products/Scheduler/www/manage_current_tasks.zpt 1.3 => 1.4 ===
--- Products/Scheduler/www/manage_current_tasks.zpt:1.3 Tue Aug 13 14:11:32 2002
+++ Products/Scheduler/www/manage_current_tasks.zpt Thu Aug 15 12:54:08 2002
@@ -29,17 +29,16 @@
<tr align="left" class="form-help"
tal:condition="repeat/task_tup/even"
tal:define="current_time python:task_tup[0];
- current_task python:task_tup[1];
- scheduled_when current_task/when
- "
->
+ current_task_info python:task_tup[1];
+ scheduled_when current_task_info/when;
+ ">
<td><input type="checkbox" name="when:int:list"
tal:attributes="value current_time"></td>
<td tal:content="python: here.format_time(scheduled_when)">
11:00 am</td>
<td tal:content="python: here.format_time(current_time)">11:00 am</td>
- <td tal:content="current_task/description">An even task</td>
- <td tal:content="current_task/info">
+ <td tal:content="current_task_info/description">A Task Among All Tasks</td>
+ <td tal:content="current_task_info/info">
incidental run info
</td>
</tr>