36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n static %}<!DOCTYPE html>
|
|
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
|
|
{% block extrastyle %}
|
|
<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "css/base-admin.css" %}{% endblock %}" />
|
|
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
|
|
{% endblock %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block extra_body_attrs %}class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}" data-admin-utc-offset="{% now "Z" %}"
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
<!-- Container -->
|
|
<div id="container">
|
|
|
|
<!-- Content -->
|
|
<div id="content" class="{% block coltype %}colM{% endblock %}">
|
|
{% block pretitle %}{% endblock %}
|
|
{% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
|
|
{% block content %}
|
|
{% block object-tools %}{% endblock %}
|
|
{{ content }}
|
|
{% endblock %}
|
|
<br class="clear" />
|
|
</div>
|
|
<!-- END Content -->
|
|
|
|
{% block footer %}<div id="footer"></div>{% endblock %}
|
|
</div>
|
|
<!-- END Container -->
|
|
|
|
{% endblock %}
|