{% extends "base.html" %} {% import "_copy.html" as copy %} {% import "_sections.html" as blocks %} {% block title %}{{ t('profile.title') }} - {{ t('app.title') }}{% endblock %} {% block content %}

{{ t('profile.title') }}

{{ t('profile.hint') }}

{% if missing %}

{{ t('profile.missing') }}

{% elif unreadable %}

{{ t('profile.unreadable') }}

{{ unreadable }}

{% else %} {% if problem %}

{{ t(problem) }}

{% endif %} {% if saved %}

{{ t('profile.saved') }}

{% endif %}

{{ t('profile.status') }}

{{ t('profile.status_hint') }}

{% if status %}
{{ t('overview.filled') }}
{% if status.filled %}{{ t('overview.yes') }}{% else %}{{ t('overview.no') }}{% endif %}
{{ t('overview.source') }}
{{ status.source }}
{{ t('overview.updated') }}
{{ status.updated }}
{% endif %} {{ blocks.editor(sections, '/profile/section') }}

{{ t('profile.whole_file') }}

{{ t('profile.raw') }} {{ copy.document(text) }}
{% endif %} {% endblock %} {% block scripts %}{% endblock %}