{% extends 'settings/layout.html' %} {% load humanize %} {% load i18n %} {% 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 %}

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

{% trans "Set name" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text icon_with_text="pencil" controls_text="edit_domain" controls_uid=domain.id focus="id_description" %}
{% trans "View links" %} ({{ domain.links.count }})
    {% for link in domain.links.all|slice:10 %}
  • {{ link.url }} {% if link.filelink.filetype %} ({{ link.filelink.filetype }}) {% endif %}
  • {% endfor %}
{% csrf_token %}
{% 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 %}