index.html 845 B

1234567891011121314151617181920212223242526272829303132333435
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n admin_static jet_tags static %}
  3. {% block html %}
  4. {% get_dashboard 'index' as dashboard %}
  5. {{ block.super }}
  6. {% endblock %}
  7. {% block extrastyle %}
  8. <link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
  9. {% for css in dashboard.media.css %}
  10. <link href="{% static css %}" rel="stylesheet" />
  11. {% endfor %}
  12. {% endblock %}
  13. {% block extrahead %}
  14. {% for js in dashboard.media.js %}
  15. <script src="{% static js %}"></script>
  16. {% endfor %}
  17. {% endblock %}
  18. {% block coltype %}colMS{% endblock %}
  19. {% block bodyclass %}{{ block.super }} dashboard{% endblock %}
  20. {% block sidebar %}{% endblock %}
  21. {% block top-right %}
  22. {{ dashboard.render_tools }}
  23. {% endblock %}
  24. {% block content %}
  25. {{ dashboard.render }}
  26. {% endblock %}