diff options
Diffstat (limited to 'app/templates/index.html')
| -rw-r--r-- | app/templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/index.html b/app/templates/index.html index e1071d2..6c6241e 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -12,7 +12,7 @@ <div class="tasks-todo"> <ol> {% for task in tasks_todo %} - <li><a href="/annotate/{{ task.dataset.id }}">{{ task.dataset.name }}</a></li> + <li><a href="/annotate/{{ task.id }}">{{ task.dataset.name }}</a></li> {% endfor %} </ol> </div> @@ -23,7 +23,7 @@ <h2>Completed Annotations</h2> <div class="tasks-done"> {% for task in tasks_done %} - <a class="task-done" href="/annotate/{{ task.dataset.id }}">{{ task.dataset.name }}</a> + <a class="task-done" href="/annotate/{{ task.id }}">{{ task.dataset.name }}</a> {% endfor %} </div> {% endif %} |
