Remove custom context processor

This commit is contained in:
Alexandre Iooss 2019-08-08 19:18:33 +02:00
parent d0086c84e8
commit 9f52bed890
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
2 changed files with 0 additions and 9 deletions

View File

@ -23,9 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
{% block sidebar %}
{% if is_perm %}
<a class="list-group-item list-group-item-info" href="{% url "logs:index" %}">
<i class="glyphicon glyphicon-stats"></i>
Évènements
@ -34,6 +32,4 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<i class="glyphicon glyphicon-stats"></i>
Actions sur la bdd
</a>
{% endif %}
{% endblock %}

View File

@ -1,5 +0,0 @@
def context_user(request):
is_perm = request.user.has_perms(['perm'])
return {
'is_perm': is_perm,
}