{% 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 %}
{% if author.date_joined %}{% else %}N/A{% endif %}
{% if author.last_visit %}{% else %}N/A{% endif %}
{% if not is_system_user %} {{ form_fields(form) }}
{% else %}
{{ _('This is system user account, you cannot edit it.') }}
{% endif %}
{% 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 %}