mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
384 B
14 lines
384 B
{% extends "admin/base_site.html" %}
|
|
{% load static %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/base_block.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block usertools %}
|
|
<div id="user-tools">
|
|
{% block welcome-msg %}{{ block.super }}{% endblock %}
|
|
{% block userlinks %}{{ block.super }}{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
|