{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% blocktrans %} Use this wizard to configure where the LCD summary model lives and to create the model directory if needed. {% endblocktrans %}

{% csrf_token %}
{% for field in form %}
{{ field.errors }}
{{ field.label }} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}

{% trans "Current configuration" %}

{% trans "Resolved model path" %}: {{ resolved_path }}
{% trans "Last install timestamp" %}: {{ config.installed_at|default:_("Not installed yet") }}

{% trans "Environment checklist" %}

{% for item in checks %} {% endfor %}
{% trans "Step" %} {% trans "Status" %} {% trans "Guidance" %}
{{ item.label }} {{ item.status }} {{ item.detail }}
{% endblock %}