mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 07:29:43 +00:00
28 lines
1 KiB
HTML
28 lines
1 KiB
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}Domains{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="icon-menu">
|
|
{% for domain in domains %}
|
|
<a class="option" href="{{ domain.urls.edit }}">
|
|
<i class="fa-solid fa-globe"></i>
|
|
<span class="handle">
|
|
{{ domain.domain }}
|
|
<small>
|
|
{% if domain.public %}Public{% else %}Private{% endif %}
|
|
{% if domain.service_domain %}({{ domain.service_domain }}){% endif %}
|
|
</small>
|
|
</span>
|
|
{% if domain.default %}
|
|
<span class="pill">Default</span>
|
|
{% endif %}
|
|
</a>
|
|
{% empty %}
|
|
<p class="option empty">You have no domains set up.</p>
|
|
{% endfor %}
|
|
<a href="{% url "admin_domains_create" %}" class="option new">
|
|
<i class="fa-solid fa-plus"></i> Add a domain
|
|
</a>
|
|
</section>
|
|
{% endblock %}
|