{% include "./_tabs.html" %}
{% if request.user.is_staff %}
Create new
{% endif %}
Name
Sources
Actions
{% for type in object_list %}
{{ type.name }}
{{ type.source_count }}
{% if request.user.is_staff %}
{% if type.source_count %}
{% else %}
{% endif %}
{% endif %}
{% empty %}
No source types configured
{% endfor %}
{% if request.user.is_staff %}
{% for type in object_list %}
{% if not type.source_count %}
{% include "./_delete_confirm_dialog.html" with obj=type delete_url_name="htmx:sourcesystemtype-delete" obj_type="source type" %}
{% endif %}
{% endfor %}
{% endif %}