delete superfluous template tag call (#25518)

This commit is contained in:
Emmanuel Cazenave 2018-07-27 16:52:10 +02:00
parent d024517025
commit ddcabf6372
1 changed files with 1 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{% extends "gadjo/base.html" %}
{% load i18n authentic2 %}
{% load i18n %}
{% block page-title %}Authentic2 - {{ request.get_host }}{% endblock %}
@ -8,7 +8,6 @@
{% block css %}
{{ block.super }}
<link rel="stylesheet" href="{{ STATIC_URL }}authentic2/css/style.css" />
{% renderblock "css" %}
{{ form.media.css }}
{% endblock %}
@ -18,7 +17,6 @@
{% comment %}block extra_scripts is kept for compatibility with old themes{% endcomment %}
{% block extra_scripts %}
{% endblock %}
{% renderblock "js" %}
{% endblock %}
{% block sidepage %}
@ -38,5 +36,4 @@
{% endblock %}
{% block page-end %}
{% renderblock "js-endpage" %}
{% endblock %}