{% extends 'layout/page.html' %} {% block head_title %} {% if context.id %} {{ i18n.gettext('User')|u }} {{ context.id }} - {{ config.TRACKER_NAME }} {% else %} {{ i18n.gettext('New User')|u }} - {{ config.TRACKER_NAME }} {% endif %} {% endblock %} {% block page_header %} {% if not (context.id or context.is_edit_ok()) %} {{ i18n.gettext('New User')|u }} {% elif not context.id and context.is_edit_ok() %} {{ i18n.gettext('New User Editing')|u }} {% elif context.id and not context.is_edit_ok() %} {{ i18n.gettext('User')|u }}{{ context.id }} {% elif context.id and context.is_edit_ok() %} {{ i18n.gettext('User')|u }}{{ context.id }} {{ i18n.gettext('editing')|u }} {% endif %} {% endblock %} {% block content %} {% include 'layout/permission.html' %} {% if context.is_view_ok() %}
{% endif %} {{ context.history()|u }} {% endblock %}