takahe/templates/admin/domain_edit.html

25 lines
893 B
HTML
Raw Normal View History

2022-11-18 00:43:00 +00:00
{% extends "settings/base.html" %}
2022-11-17 04:12:28 +00:00
2022-11-18 00:43:00 +00:00
{% block subtitle %}{{ domain.domain }}{% endblock %}
2022-11-17 04:12:28 +00:00
{% block content %}
<form action="." method="POST">
{% csrf_token %}
2022-11-18 00:43:00 +00:00
<fieldset>
<legend>Domain Details</legend>
{% include "forms/_field.html" with field=form.domain %}
{% include "forms/_field.html" with field=form.service_domain %}
</fieldset>
<fieldset>
<legend>Access Control</legend>
{% include "forms/_field.html" with field=form.public %}
{% include "forms/_field.html" with field=form.default %}
2022-11-18 00:43:00 +00:00
</fieldset>
2022-11-17 04:12:28 +00:00
<div class="buttons">
<a href="{{ domain.urls.root }}" class="button secondary left">Back</a>
2022-11-17 04:12:28 +00:00
<a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
<button>Save</button>
</div>
</form>
{% endblock %}