{% extends base %} {% from 'macro.html' import breadcrumbs with context %} {% from 'macro.html' import form_fields with context %} {% block content %}
{{- breadcrumbs([ [url_for('admin_index.index'), _('Administration')], [url_for('admin_authors.index'), _('Authors')] ]) }}

{{ page_title }}

{% if author.id == current_user.id %}

{{ _("(it's you)") }}

{% endif %} {% if saved %}
{{ _('Saved!') }}
{% endif %} {% if config['DEBUG'] and current_user.is_superuser %}
{{ author.password }}

{% endif %}
{{ form_fields(form) }}
{% if author.is_active and author.id != current_user.id %}
{% endif %} {{- breadcrumbs([ [url_for('admin_index.index'), _('Administration')], [url_for('admin_authors.index'), _('Authors')] ]) }}
{% endblock %}