diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/todolists/view.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 02c228e4..9e9acbaf 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -32,6 +32,11 @@ {% endblock %} {% block content %} <div class="greybox"> + {% if perms.todolists.change_todolist %} + <div style="float:right"> + <a href="/todo/edit/{{list.id}}?">Edit Todo List</a> + </div> + {% endif %} <h2 class="title">ToDo List: {{ list.name }}</h2> <table id="todotable" class="results" width="100%"> <thead> |