{% extends 'base.html' %} {% load i18n %} {% load mss %} {% block sidebar %} {% include 'sidebar.html' %} {% endblock %} {% block content %}
{% 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 %}
{% endif %} {% trans "Back" %}
{% endblock %}