{% extends 'base.html' %} {% load i18n %} {% load mss %} {% block sidebar %} {% include 'sidebar.html' %} {% endblock %} {% block content %} {{ transaction.current_step.title }} {% if transaction.modules_list %} {{ transaction.current_step.info }} {% else %} {% trans "No addon selected." %} {% endif %} {% if transaction.current_step.show_modules %} {% for module in transaction.modules_info %} {{ module.name }} {{ module.description|firstline }} {% if module.dep %}({% trans "Added as a dependency" %}){% endif %} {% if module.force %}({% trans "Reinstallation" %}){% endif %} {% if module.force %} {% trans "If other addons requires this addon they may be broken after the reinstallation." %} {% endif %} {% endfor %} {% endif %} {% if transaction.modules_list %} {% trans "Continue" %} → {% endif %} {% trans "Back" %} {% endblock %}
{{ transaction.current_step.info }}
{% trans "No addon selected." %}
{{ module.description|firstline }} {% if module.dep %}({% trans "Added as a dependency" %}){% endif %} {% if module.force %}({% trans "Reinstallation" %}){% endif %}
{% trans "If other addons requires this addon they may be broken after the reinstallation." %}