{% load static %}
|
|
|
|
{% include "_head.html" %}
|
|
|
|
<body class="app">
|
|
{% include "_cabecera.html" %}
|
|
|
|
<div class="app-wrapper">
|
|
|
|
<div class="app-content pt-3 p-md-3 p-lg-4">
|
|
{% block content %}{% endblock %}
|
|
</div><!--//app-content-->
|
|
|
|
{% include "_footer.html" %}
|
|
|
|
</div><!--//app-wrapper-->
|
|
|
|
<!-- Javascript -->
|
|
<script src="{% static 'plugins/popper.min.js' %}"></script>
|
|
<script src="{% static 'plugins/bootstrap/js/bootstrap.min.js' %}"></script>
|
|
|
|
<!-- Charts JS -->
|
|
<script src="{% static 'plugins/chart.js/chart.min.js' %}"></script>
|
|
<script src="{% static 'plugins/js/index-charts.js' %}"></script>
|
|
|
|
<!-- La línea siguiente es para la demo de los charts en charts.html -->
|
|
<script src="{% static 'js/charts-demo.js' %}"></script>
|
|
|
|
|
|
<!-- Page Specific JS -->
|
|
<script src="{% static 'js/app.js' %}"></script>
|
|
</body>
|
|
</html>
|
|
|