{% extends "base.html" %} {% block title %}Models — SimpleAudit{% endblock %} {% block content %}

Model Registry

{% if error %}
{{ error }}
{% endif %}

Connections

{% if search_query %}✕{% endif %}
{% if connections %}
{% for conn in connections %}
{{ conn.name }} {{ conn.provider }} · {{ conn.base_url }} {% if conn.has_key %}🔑 key set{% else %}⚠ no key{% endif %} {{ conn.models.count }} model(s)
{% csrf_token %}
{% if conn.models.all %}
{% for m in conn.models.all %}
{{ m.display_name|default:m.model_id }}{% if m.display_name %} ({{ m.model_id }}){% endif %}
{% csrf_token %}
{% endfor %}
{% endif %}
{% csrf_token %}
{% endfor %}
{% else %}

No connections registered.

{% endif %}
{% csrf_token %}
{% endblock %}