{% load i18n mark_current staticfiles towel_form_tags %}
{% block title %}myproject{% endblock %}
myproject
{% block navigation %} {% if request.user.is_authenticated %}
{% mark_current request.path %}
{% trans "Contacts" %}
{% trans "Projects" %}
{% trans "Billing" %}
{% trans "Team" %}
{% trans "Logbook" %}
{% endmark_current %}
{{ user }}
{% trans "Account" %}
{% trans "Change my password" %}
{% if request.access.access >= MANAGEMENT %}
{% trans "Contact groups" %}
{% trans "Configuration" %}
{% endif %}
Sign Out
{% endif %} {% endblock %}
{% block main %}
{% block page-header %} {% if verbose_name_plural %}
{% if search_form %}
{% for field in search_form.fields_iterator %} {% if forloop.first %}
{% endif %} {% if field.is_hidden %} {{ field }} {% else %} {% form_item field %} {% endif %} {% if forloop.last %} {% if search_form.searching %}
{% trans "Reset" %}
{% endif %}
{% trans "Search" %}
{% endif %} {% endfor %}
{{ search_form.query }}
{% endif %}
{{ verbose_name_plural|capfirst }} {% if paginator %}
{{ page.start_index }} - {{ page.end_index }} / {{ paginator.count }} {% if search_form.searching %} {% with total=view.get_queryset.count %} {% if total and paginator.count != total %} (
{% blocktrans %}{{ total }} total{% endblocktrans %}
) {% endif %} {% endwith %} {% endif %}
{% endif %}
{% endif %} {% endblock page-header %}
{% block messages %}{% include "towel/_messages.html" %}{% endblock %} {% block content %}{% endblock %}
{% block sidebar %} {% if verbose_name and add_url and adding_allowed or view.allow_add %}
{{ verbose_name_plural }}
{% mark_current request.path %}
{% blocktrans %}New {{ verbose_name }}{% endblocktrans %}
{% endmark_current %}
{% endif %} {% endblock %}
{% endblock main %}
Saving...
{% block js %}{% endblock %}