{% extends "admin/base_site.html" %} {% load i18n static %} {% load admin_menu %} {% load i18n static %} {% load cart_template_tags%} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% if not is_popup %} {% block breadcrumbs %}

{{site_info.site_name}} administration

{% endblock %} {% endif %} {% block content %}

{{request.user|underway_orders_count}}

Underway Orders

{{request.user|all_orders_count}}

All Orders

{{request.user|all_users_count}}

User Registrations

{{request.user|all_products_count}}

All Products

Sale statistics
{% block sidebar %}

{% trans 'Recent actions' %} /

{% trans 'My actions' %}

{{ app.name }}

{% load log %} {% get_admin_log 10 as admin_log for_user user %} {% if not admin_log %}

{% trans 'None available' %}

{% else %}
{% for entry in admin_log %}
{{entry.action_time}}
{{entry.user}} {% if entry.is_addition %}added{% endif %}{% if entry.is_change %}edited {% endif %}{% if entry.is_deletion %}deleted{% endif %} {% if entry.is_deletion or not entry.get_admin_url %} {{ entry.object_repr }} {% else %} {{ entry.object_repr }} {% endif %}
{% if entry.content_type %} {% filter capfirst %} {{ entry.content_type }}{% endfilter %} {% else %} {% trans 'Unknown content' %} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% endblock %}