home · contact · privacy
Various small fixes.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 16 Jan 2024 02:30:57 +0000 (03:30 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 16 Jan 2024 02:30:57 +0000 (03:30 +0100)
ledger.py
todo.py
todo_templates/task.html

index a26ca0f345f5dfdaf02eb8cff45330991eb14d7d..46035bc3790ac42815fd1b9c2a1910cf574da07e 100755 (executable)
--- a/ledger.py
+++ b/ledger.py
@@ -1248,7 +1248,7 @@ class LedgerHandler(PlomHandler):
         elif prefix + '/edit' == parsed_url.path:
             index = int(postvars['index'][0])
             edit_mode = postvars['edit_mode'][0]
-            validate = submit_button in {'save', 'copy', 'check'}
+            validate = submit_button in {'update', 'add', 'copy', 'check'}
             starts_at = '?' if index == -1 else db.bookings[index].starts_at
             if 'textarea' == edit_mode:
                 lines = [LedgerTextLine(line) for line in postvars['booking'][0].rstrip().split('\n')]
diff --git a/todo.py b/todo.py
index 171514f1f8bb1a6e01161b6e6b7f1840955a2f7e..a4d7da0e56fce598906e40ad42fd7a247d3934f7 100644 (file)
--- a/todo.py
+++ b/todo.py
@@ -483,7 +483,7 @@ class TodoDB(PlomDB):
 
     def add_task(self, id_=None, dict_source=None, return_id=False):
         id_ = id_ if id_ else str(uuid4())
-        t = Task.from_dict(self, dict_source, id_) if dict_source else Task(self, id)
+        t = Task.from_dict(self, dict_source, id_) if dict_source else Task(self, id_)
         self.tasks[id_] = t
         if return_id:
             return id_, t
@@ -707,7 +707,7 @@ class TodoDB(PlomDB):
 
     def show_task(self, id_, return_to='', search=''):
         task = self.tasks[id_] if id_ else self.add_task()
-        selected = id_ in self.selected_day.todos.keys()
+        selected = task.id_ in self.selected_day.todos.keys()
         linked_tasks = [self.tasks[l] for l in task.links]
         filtered_tasks = [t for t in self.tasks.values() if t.visible and t != self and (t not in linked_tasks) and (len(search) == 0 or t.matches(search))] 
         return j2env.get_template('task.html').render(
index 05a661193eecbc990c90c270439359fdd8aa4a4f..85347efece93587e0f595050af3880ad9ec6e956 100644 (file)
@@ -28,19 +28,19 @@ add: <input name="joined_tags" type="text" value="" ><br />
 <tr><th>children</th>
 <td>
 <table>
-{% for task in linked_tasks %}
+{% for subtask in linked_tasks %}
 <tr>
-<td><input name="link_task" type="checkbox" value="{{task.id_}}" checked/></td>
-<td><a href="task?id={{task.id_}}">{{task.title}}</a></td>
+<td><input name="link_task" type="checkbox" value="{{subtask.id_}}" checked/></td>
+<td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
 </tr>
 {% endfor %}
 <tr>
 <th colspan=2>---</th>
 </tr>
-{% for task in filtered_tasks %}
+{% for subtask in filtered_tasks %}
 <tr>
-<td><input name="link_task" type="checkbox" value="{{task.id_}}"/></td>
-<td><a href="task?id={{task.id_}}">{{task.title}}</a></td>
+<td><input name="link_task" type="checkbox" value="{{subtask.id_}}"/></td>
+<td><a href="task?id={{subtask.id_}}">{{subtask.title}}</a></td>
 </tr>
 {% endfor %}
 </table>