{% extends 'settings/layout.html' %} {% load i18n %} {% load utilities %} {% block title %}{% trans "Link Domains" %}{% endblock %} {% block header %}{% trans "Link Domains" %}{% endblock %} {% block panel %}

{% trans "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." %}

{% for domain in domains %} {% join "domain" domain.id as domain_modal %}

{{ domain.name }} ({{ domain.domain }})

{% trans "View links" %} ({{ domain.links.count }})
{% include "settings/link_domains/link_table.html" with links=domain.links.all|slice:10 %}
{% include "settings/link_domains/edit_domain_modal.html" with domain=domain id=domain_modal %}
{% if status != "approved" %}
{% csrf_token %}
{% endif %} {% if status != "blocked" %}
{% csrf_token %}
{% endif %}
{% endfor %} {% if not domains.exists %} {% if status == "approved" %} {% trans "No domains currently approved" %} {% elif status == "pending" %} {% trans "No domains currently pending" %} {% else %} {% trans "No domains currently blocked" %} {% endif %} {% endif %}
{% endblock %}