{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Sources" %} | {% trans "Recruitment System" %}{% endblock %} {% block content %}

{% trans "Data Sources" %}

{% trans "Create New Source" %}
{% trans "Available Sources" %}
{{ page_obj.paginator.count }} {% trans "sources" %}
{% if sources %}
{% for source in sources %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Status" %} {% trans "API Key" %} {% trans "Created By" %} {% trans "Created At" %} {% trans "Actions" %}
{{ source.name }}
{{ source.description|truncatewords:10 }}
{{ source.source_type }} {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {% if source.api_key %} {{ source.api_key|slice:":8" }}... {% else %} {% trans "Not generated" %} {% endif %} {{ source.created_by }} {{ source.created_at|date:"M d, Y" }}
{% if is_paginated %} {% endif %} {% else %}
{% trans "No sources found" %}

{% trans "Get started by creating your first data source." %}

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