diff options
author | Dan McGee <dan@archlinux.org> | 2013-03-11 18:48:29 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-03-11 18:48:31 -0500 |
commit | 6172b6dd09f932de8db7ab69641370d78d25a4c2 (patch) | |
tree | a46f37a1f384885809ae3916350f881add06a61c /templates/todolists | |
parent | d1d40670d35213cc430d242ff96c4697bff6e26d (diff) |
Make todolists fully public
Remove the login_required decorator from the index and detail views to
allow everyone to see the same thing. Of course, when I say "same" here,
unauthenticated users don't see the same links developers do to mark
packages complete and incomplete.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists')
-rw-r--r-- | templates/todolists/view.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 1b9a9e37..a96297cf 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -45,8 +45,10 @@ <div><label for="id_repo_{{ repo.name|lower }}" title="Target Repository {{ repo.name }}">[{{ repo.name|lower }}]</label> <input type="checkbox" name="repo_{{ repo.name|lower }}" id="id_repo_{{ repo.name|lower }}" class="repo_filter" value="{{ repo.name|lower }}" checked="checked"/></div> {% endfor %} + {% if user.is_authenticated %} <div><label for="id_mine_only" title="Show only packages maintained by me">Only Mine</label> <input type="checkbox" name="mine_only" id="id_mine_only" value="mine_only"/></div> + {% endif %} <div><label for="id_incomplete" title="Packages not yet completed">Only Incomplete</label> <input type="checkbox" name="incomplete" id="id_incomplete" value="incomplete"/></div> <div ><label> </label><input title="Reset search criteria" type="button" id="criteria_reset" value="Reset"/></div> |