{% extends "dashboard/base.html" %} {% load category_tags %} {% load dashboard_tags %} {% load i18n %} {% load staticfiles %} {% block styles %} {% if use_less %} {% else %} {% endif %} {% endblock %} {% block extrastyles %} {{ block.super }} {% endblock %} {% block title %} {% trans "Dashboard" %} | {{ block.super }} {% endblock %} {% block layout %} {% block navbar %} {% endblock navbar %} {% block dashboard_nav %} {% dashboard_navigation user as nav_items %} {% endblock %}
{% block breadcrumbs %} {% endblock %}
{% include 'dashboard/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 the django-oscar organisation's servers. It's included to keep track of which sites are running Oscar in production, and what versions of Python and Django are used. This provides useful data when deciding which versions of Python and Django to support. You are, of course, welcome to remove this tracker. To do so, set OSCAR_TRACKING=False in your settings. {% endcomment %} {% block trackerimage %} {% if call_home %} {% endif %} {% endblock %} {% endblock %} {# Local scripts #} {% block scripts %} {% endblock %} {% block extrascripts %} {{ block.super }} {# jQuery plugins #} {# We don't use a fallback for tinyMCE as it dynamically loads several other files #} {% endblock %} {% block onbodyload %} {{ block.super }} options = { 'languageCode': '{{ LANGUAGE_CODE }}' }; oscar.dashboard.init(options); {% endblock %}