{% extends 'faq/base.html' %} {% load i18n %} {% block details %}

{% translate "Module Status" %}

{% translate "Live checks highlight which modules are ready right now and what is missing when they are not." %}

{% for module in modules %} {% empty %} {% endfor %}
{% translate "Module" %} {% translate "Status" %} {% translate "Current checks" %} {% translate "Next steps" %}
{{ module.name }} {% if module.summary %}

{{ module.summary }}

{% endif %} {% if module.cta %}
{{ module.cta|safe }}
{% endif %}
{% if module.active %} {% translate "Active" %} {% else %} {% translate "Inactive" %} {% endif %}
    {% for detail in module.details %}
  • {{ detail }}
  • {% endfor %}
    {% for action in module.actions %}
  • {{ action }}
  • {% endfor %}
{% translate "No module data available." %}
{% endblock %}