{{ _("Connections") }}

{{ _("Manage external service connections for automated user invitations") }}

{% if connections %}
{% for connection in connections %} {% endfor %}
{{ _("Connection Name") }} {{ _("Type") }} {{ _("Media Server") }} {{ _("URL") }} {{ _("Actions") }}
{{ connection.name }} {% if connection.connection_type == 'overseerr' %} {{ _("Overseerr (Info)") }} {% elif connection.connection_type == 'ombi' %} {{ _("Ombi") }} {% elif connection.connection_type == 'audiobookrequest' %} {{ _("Audiobookrequest") }} {% else %} {{ connection.connection_type.title() }} {% endif %}
{{ connection.media_server.name }} ({{ connection.media_server.server_type.title() }})
{% if connection.url %} {{ connection.url }} {% else %} {{ _("Auto-import enabled") }} {% endif %}
{% else %}

{{ _("No connections configured") }}

{{ _("Connect your external services to automate user invitations when invites are created for specific media servers.") }}

{% endif %}