{% extends "base.html" %} {% load nav %} {% load waffle_tags %} {% block content %}
{% if request.user.is_authenticated %}
{% flag "organizations" %}
{% include "console/includes/_context_switcher.html" %}
{% endflag %}
{# Console Sub-Navigation - only shown on medium and large screens #}
{% include "console/includes/_console_sub_nav.html" %}
{% endif %}
{% if current_context.type != 'organization' %} {% include "partials/_task_usage.html" %} {% endif %} {# This block will be overridden by child templates like console/index.html #} {% block console_content %}{% endblock %}
{# Allow child templates to add extra JavaScript #} {% block extra_js %}{% endblock %} {% endblock %}