{% extends 'layouts/base.html' %} {% load i18n %} {% load action_icons %} {% block title %}{% trans "Standard Sources" %}{% endblock %} {% block content %}

{% trans "Standard Sources" %}

{% trans "Manage standard sources like CBAHI, JCI, ISO" %}

{% action_icon "create" %} {% trans "Add Source" %}
{% if sources %}
{% for source in sources %} {% endfor %}
{% trans "Code" %} {% trans "Name" %} {% trans "Arabic Name" %} {% trans "Website" %} {% trans "Status" %} {% trans "Actions" %}
{{ source.code }} {{ source.name }} {{ source.name_ar|default:"-" }} {% if source.website %} {{ source.website }} {% else %} - {% endif %} {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% else %}
{% action_icon "folder" size=64 %}
{% trans "No sources found" %}

{% trans "Add your first standard source to get started" %}

{% action_icon "create" %} {% trans "Add Source" %}
{% endif %}
{% endblock %}