{% extends 'orchestra/base.html' %} {% load staticfiles %} {% block title %}Dashboard{% endblock %} {% block topbar %} {% endblock %} {% block main %}
{% block content %}content{% endblock content %}
{% endblock %} {% block page_javascript %} {% for js in javascript_includes %} {# we call `static()` in the view function to prevent whitenoise looking for a template value #} {{ js | safe }} {% endfor %} {% endblock page_javascript%} {% block page_stylesheets %} {# we call `static()` in the view function to prevent whitenoise looking for a template value #} {% for css in stylesheet_includes %} {{ css | safe }} {% endfor %} {% endblock page_stylesheets%}