{% extends "dashboard/base.html" %} {% load category_tags %} {% load dashboard_tags %} {% load i18n %} {% load compress %} {% load staticfiles %} {% block mainstyles %} {% compress css %} {% if use_less %} {% else %} {% endif %} {% endcompress %} {% endblock %} {% block extrastyles %} {{ block.super }} {% compress css %} {% endcompress %} {% endblock %} {% block title %} {% trans "Dashboard" %} | {{ block.super }} {% endblock %} {% block layout %} {% block navbar %} {% endblock navbar %} {% block dashboard_nav %} {% dashboard_navigation request.user %} {% endblock %}
{% block breadcrumbs %} {% endblock %}
{% include 'partials/alert_messages.html' %} {% block header %} {% endblock %}
{% block content %} {% block dashboard_content %}{% endblock dashboard_content %} {% endblock content %}
{% comment %} This block includes a single pixel from one of Tangent's servers. We use the referer header to determine which sites are using Oscar. Since Tangent sponsor Oscar's development, this is an important metric to help justify the investment. You are, of course, welcome to remove this tracker - but please email the mailing list if you have a production site using Oscar. {% endcomment %} {% block trackerimage %} {% if call_home and not debug %} {% endif %} {% endblock %} {% endblock %} {% block extrascripts %} {{ block.super }} {% compress js %} {# jQuery plugins #} {# The CSS for the timepicker is embedded in dashboard.less #} {% endcompress %} {% endblock %} {% block onbodyload %} {{ block.super }} oscar.dashboard.init(); {% endblock %}