{% extends "administration/base.html" %} {% load i18n %} {% load passbook_utils %} {% load admin_reflection %} {% block content %}

{% trans 'Source' %}

{% trans "External Sources which can be used to get Identities into passbook, for example Social Providers like Twiter and GitHub or Enterprise Providers like ADFS and LDAP." %}

{% if object_list %}
{% include 'partials/toolbar_search.html' %}
{% include 'partials/pagination.html' %}
{% for source in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Type' %} {% trans 'Additional Info' %}
{{ source.name }}
{% if not source.enabled %} {% trans 'Disabled' %} {% endif %}
{{ source|fieldtype }} {{ source.ui_additional_info|default:""|safe }} {% trans 'Edit' %} {% trans 'Delete' %} {% get_links source as links %} {% for name, href in links %} {% trans name %} {% endfor %}
{% include 'partials/pagination.html' %}
{% else %}
{% include 'partials/toolbar_search.html' %}

{% trans 'No Sources.' %}

{% if request.GET.search != "" %} {% trans "Your search query doesn't match any sources." %} {% else %} {% trans 'Currently no sources exist. Click the button below to create one.' %} {% endif %}
{% endif %}
{% endblock %}