{% extends "base.html" %} {% load static %} {% block title %}Sources{% endblock %} {% block content %}
{% if search_query %} 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 %}
Name Type Status API Key Created Actions
{{ source.name }} {% if source.description %}
{{ source.description|truncatechars:50 }} {% endif %}
{{ source.get_source_type_display }} {% if source.is_active %} Active {% else %} Inactive {% endif %} {{ source.api_key|truncatechars:20 }} {{ source.created_at|date:"M d, Y" }}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No sources found

{% if search_query %} No sources match your search criteria. {% else %} Get started by creating your first source. {% endif %}

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