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.
36 lines
1.3 KiB
36 lines
1.3 KiB
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_static %}
|
|
{% load static from staticfiles %}
|
|
|
|
{% block title %}SIGI{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}" >
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/core.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'admin/js/jquery.min.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/Chart.min.js' %}" ></script>
|
|
<script type="text/javascript" src="{% static 'js/dashboard.js' %}"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content_title %}
|
|
<h1 class="pull-left">{% trans 'Dashboard' %}</h1>
|
|
<div class="pull-right"><a href="{% url 'openmap' %}"><img src="{% static 'img/mapicon.png' %}" /> {% trans 'Mapa de atuação do Interlegis' %}</a></div>
|
|
{% endblock %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />{% endblock %}
|
|
|
|
{% block coltype %}colMS{% endblock %}
|
|
|
|
{% block bodyclass %}dashboard{% endblock %}
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
{% include "snippets/modules/charts-convenios.html" %}
|
|
</div>
|
|
{% endblock %}
|