index.html 847 B

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