{% extends 'base.html' %} {% load i18n %} {% block content %}

1. {% trans "Preinstallation" %} » 2. {% trans "Medias" %} » 3. {% trans "Installation" %} » 4. {% trans "Configuration" %}

{% trans "Preinstallation" %}

{% blocktrans count modules|length as counter %}You have selected the following module.{% plural %}You have selected the following modules.{% endblocktrans %}

{% trans "Modules" %} {% for module in modules %}

{{ module.name }}

{{ module.desc }} {% if module.dep %}({% trans "Added as a dependency" %}){% endif %} {% if module.force %}({% trans "Reinstallation" %}){% endif %}

{% if module.preinst %}

{{ module.preinst }}

{% endif %} {% if module.force %}

{% trans "If other components requires this component they may be broken after the reinstallation." %}

{% endif %} {% endfor %} {% if not modules %}

{% trans "No component selected." %}

{% endif %}
{% if modules %} {% endif %}
{% endblock %}