{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Sources" %} | {% trans "Recruitment System" %}{% endblock %} {% block content %}
| {% 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" }} |
{% trans "Get started by creating your first data source." %}
{% trans "Create Source" %}