This commit is contained in:
Mitar 2016-05-08 09:57:06 +00:00
commit d23b0835cb

View File

@ -2,10 +2,14 @@
{% load rest_framework %} {% load rest_framework %}
{% load i18n %} {% load i18n %}
{% block prehead %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
{% block head %} {% endblock prehead %}
{% block head %}
{% block meta %} {% block meta %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
@ -24,11 +28,17 @@
<link rel="stylesheet" type="text/css" href="{% static "rest_framework/css/default.css" %}"/> <link rel="stylesheet" type="text/css" href="{% static "rest_framework/css/default.css" %}"/>
{% endblock %} {% endblock %}
{% endblock %} {% endblock %}
{% block posthead %}
</head> </head>
{% endblock %}
{% block body %} {% block body %}
{% block bodystart %}
<body class="{% block bodyclass %}{% endblock %}"> <body class="{% block bodyclass %}{% endblock %}">
{% endblock %}
<div class="wrapper"> <div class="wrapper">
{% block navbar %} {% block navbar %}
@ -280,6 +290,11 @@
{{ filter_form }} {{ filter_form }}
{% endif %} {% endif %}
{% block bodyend %}
</body> </body>
{% endblock %} {% endblock %}
</html> {% endblock %}
{% block postbody %}
</html>
{% endblock %}