diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-26 16:28:29 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-26 16:28:29 +0000 |
| commit | 3b9586261924c791872bf0fcefc39641377fdfaf (patch) | |
| tree | d80f65aea59b22e2e4fa20ce6345bfa1c35a993d /app/templates/admin/index.html | |
| parent | Don't show done image when the user hasn't done anything (diff) | |
| download | AnnotateChange-3b9586261924c791872bf0fcefc39641377fdfaf.tar.gz AnnotateChange-3b9586261924c791872bf0fcefc39641377fdfaf.zip | |
Remove user id and dataset id and sort tasks by username
Diffstat (limited to 'app/templates/admin/index.html')
| -rw-r--r-- | app/templates/admin/index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/templates/admin/index.html b/app/templates/admin/index.html index 212ead0..136d1d5 100644 --- a/app/templates/admin/index.html +++ b/app/templates/admin/index.html @@ -4,10 +4,11 @@ <h1>Admin Home</h1> <ul> <li> - <a href="/admin/add">Add dataset</a> + <a href="{{ url_for("admin.add_dataset") }}">Add dataset</a> </li> <li> - <a href="/admin/manage">View and manage tasks</a> + <a href="{{ url_for("admin.manage_tasks") }}">View and manage + tasks</a> </li> </ul> {% endblock %} |
