diff options
author | Andrew Godwin | 2022-11-16 21:42:25 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 21:42:25 -0700 |
commit | 5b34ea46c3f458a174c5443714ade43c21defdac (patch) | |
tree | e41dda2218cee559268f99a802210f7507f47b02 /templates/settings/settings_system_domains.html | |
parent | 9d97fc92d82289301896c88f8c828321aa99701d (diff) | |
download | takahe-5b34ea46c3f458a174c5443714ade43c21defdac.tar.gz takahe-5b34ea46c3f458a174c5443714ade43c21defdac.tar.bz2 takahe-5b34ea46c3f458a174c5443714ade43c21defdac.zip |
Call it admin rather than system settings
Diffstat (limited to 'templates/settings/settings_system_domains.html')
-rw-r--r-- | templates/settings/settings_system_domains.html | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/settings/settings_system_domains.html b/templates/settings/settings_system_domains.html deleted file mode 100644 index dccde65..0000000 --- a/templates/settings/settings_system_domains.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ section.title }} - System Settings{% endblock %} - -{% block content %} - {% block menu %} - {% include "settings/_settings_system_menu.html" %} - {% 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="/settings/system/domains/create/" class="option new"> - <i class="fa-solid fa-plus"></i> Add a domain - </a> - </section> -{% endblock %} |