{% extends 'charlink/base.html' %} {% load i18n %} {% block page_title %}{% translate "Charlink Imported Apps" %}{% endblock page_title %} {% block charlink_page_header %}

{% translate "Imported Apps" %}

{% endblock charlink_page_header %} {% block charlink_content %}
{% for app, import in imported_apps.items %}

{% for login_import in import.imports %}
{{ login_import.field_label }}

{% translate "Scopes required:" %} {{ login_import.scopes|unordered_list|safe }}
{% endfor %}
{% endfor %}
{% if duplicated_apps|length > 0 %}
    {% for app in duplicated_apps %}
  • {{ app }}
  • {% endfor %}
{% else %}

{% translate "No duplicated apps found." %}

{% endif %}
{% if failed_to_import|length > 0 %}
    {% for app, reason in failed_to_import.items %}
  • {{ app }}: {{ reason }}
  • {% endfor %}
{% else %}

{% translate "All apps have been imported successfully." %}

{% endif %}
{% if no_import|length > 0 %}
    {% for app in no_import %}
  • {{ app }}
  • {% endfor %}
{% else %}

{% translate "No missing imports found." %}

{% endif %}
{% endblock charlink_content %}