diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-03 21:59:04 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-03 21:59:04 +0100 |
commit | 8b77efbfabfb3d65b0400e123025c02346454214 (patch) | |
tree | bd9457f27b57b9434d16ac284e4df86013469cb7 /templates/packages/details.html | |
parent | 710ec0a9de9a2185621cd7f51cdd2a056e12f999 (diff) | |
download | archweb-8b77efbfabfb3d65b0400e123025c02346454214.tar.gz archweb-8b77efbfabfb3d65b0400e123025c02346454214.tar.xz |
Template fine-grained permissioning
Rather than use user.is_authenticated, rely on certain permissions being
set for the user. This allows us to open up the developer side and not
assume everyone is a package maintainer.
Allow all logged-in users to still view todo lists, but don't show the
complete/incomplete links (only the text) unless they are allowed to
mess with todo lists.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index ea5e528..f73e9d7 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -26,7 +26,7 @@ title="Testing package details for {{ tp.pkgname }}">{{ tp.pkgver }}-{{ tp.pkgrel }}</a> in testing</span></li> {% endif %}{% endwith %} - {% if user.is_authenticated %} + {% if perms.main.change_package %} <li><a href="unflag/" title="Unflag this package">Click here to unflag</a></li> <li><a href="unflag/all/" title="Unflag all matching pkgbase">Click here to unflag all split packages</a></li> {% endif %} @@ -40,7 +40,7 @@ <li><a href="download/" title="Download {{ pkg.pkgname }} from mirror">Download From Mirror</a></li> </ul> - {% if user.is_authenticated %} + {% if perms.main.change_package %} <form id="pkg-action" method="post" action="/packages/update/">{% csrf_token %} <div><input type="hidden" name="pkgid" value="{{ pkg.id }}" /></div> <p>{% if user in pkg.maintainers %} |