{% extends "base.html" %} {% load static i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}
{% trans "Warning:" %} {% trans "This action cannot be undone. Deleting this source will also remove all associated integration logs and API credentials." %}
{% trans "Source to be deleted:" %}
{% trans "Name:" %}
{{ source.name }}
{% trans "Type:" %}
{{ source.get_source_type_display }}
{% if source.description %}
{% trans "Description:" %}
{{ source.description|linebreaks }}
{% endif %}
{% trans "Created:" %}
{{ source.created_at|date:"M d, Y H:i" }}
{% trans "Total API Calls:" %}
{{ source.integration_logs.count }}
{% csrf_token %}
{% trans "Cancel" %}
{% trans "Impact Summary" %}
{{ source.integration_logs.count }} {% trans "will be deleted" %}
{% trans "API Key & Secret will be permanently lost" %}
{% trans "Any systems using this API will lose access" %}
{% endblock %}