diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-27 16:40:01 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-27 16:40:01 +0000 |
| commit | 660a43118d0f55861caf4c7050f71a1fac9cd2b4 (patch) | |
| tree | 2aca0f44f1e81f9dc4a22c2faa90129b0768f1c7 /app/templates | |
| parent | Redirect after no cp button clicked (diff) | |
| download | AnnotateChange-660a43118d0f55861caf4c7050f71a1fac9cd2b4.tar.gz AnnotateChange-660a43118d0f55861caf4c7050f71a1fac9cd2b4.zip | |
Show completed on only when completed
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/admin/manage.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/admin/manage.html b/app/templates/admin/manage.html index c0668e3..92aa6a5 100644 --- a/app/templates/admin/manage.html +++ b/app/templates/admin/manage.html @@ -25,7 +25,7 @@ <td>{{ task.user.username }}</td> <td>{{ task.dataset.name }}</td> <td>{% if task.done %}Completed{% else %}Pending{% endif %}</td> - <td>{{ task.annotated_on }}</td> + <td>{% if task.done %}{{ task.annotated_on }}{% else %}{% endif %}</td> </tr> {% endfor %} </tr> |
