diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-08-19 16:30:41 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-08-19 16:30:41 +0100 |
| commit | 6cb48d9daad382f45fbfdf18f422498c3a6ca739 (patch) | |
| tree | b2e99fd32def06950e069148ed8596df899391dd /app/templates | |
| parent | Add feedback for user during demo (diff) | |
| download | AnnotateChange-6cb48d9daad382f45fbfdf18f422498c3a6ca739.tar.gz AnnotateChange-6cb48d9daad382f45fbfdf18f422498c3a6ca739.zip | |
Remove dataset name from user
Diffstat (limited to 'app/templates')
| -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 86d2f1a..613db53 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -61,7 +61,7 @@ <tr> <td> <a href="{{ url_for('main.annotate', task_id=task.id) }}"> - {{ task.dataset.name | title }} + Dataset {{ task.dataset.id | title }} </a> </td> </tr> @@ -87,7 +87,7 @@ </thead> {% for task in tasks_done %} <tr> - <td>{{ task.dataset.name | title }}</td> + <td>Dataset {{ task.dataset.id | title }}</td> <td>{{ task.annotated_on }}</td> </tr> {% endfor %} |
