Remove custom context processor
This commit is contained in:
parent
d0086c84e8
commit
9f52bed890
|
@ -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 %}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
def context_user(request):
|
||||
is_perm = request.user.has_perms(['perm'])
|
||||
return {
|
||||
'is_perm': is_perm,
|
||||
}
|
Loading…
Reference in New Issue