This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/admin/domains.html

29 lines
1000 B
HTML
Raw Normal View History

2022-11-17 05:12:28 +01:00
{% extends "base.html" %}
{% block title %}{{ section.title }} - Admin{% endblock %}
2022-11-17 05:12:28 +01:00
{% block content %}
{% block menu %}
{% include "admin/_menu.html" %}
2022-11-17 05:12:28 +01:00
{% endblock %}
<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>
</a>
{% empty %}
<p class="option empty">You have no domains set up.</p>
{% endfor %}
<a href="{% url "admin_domains_create" %}" class="option new">
2022-11-17 05:12:28 +01:00
<i class="fa-solid fa-plus"></i> Add a domain
</a>
</section>
{% endblock %}