{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Sources" %}{% endblock %} {% block content %}

{% trans "Integration Sources" %}

{% trans "Create Source for Integration" %}
{% if search_query %} {% trans "Clear" %} {% endif %}
{% if search_query %}
Found {{ total_sources }} source{{ total_sources|pluralize }} matching "{{ search_query }}"
{% endif %}
{% if page_obj %}
{% for source in page_obj %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Status" %} {% trans "API Key" %} {% trans "Created" %} {% trans "Actions" %}
{{ source.name }} {{ source.source_type }} {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {{ source.api_key|truncatechars:20 }} {{ source.created_at|date:"M d, Y" }}
{% comment %} {% endcomment %} {% comment %} {% endcomment %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
{% trans "No sources found" %}

{% if search_query %} {% blocktrans with query=query %}No sources match your search criteria "{{ query }}".{% endblocktrans %} {% else %} {% trans "Get started by creating your first source." %} {% endif %}

{% trans "Create Source" %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}