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/domain_edit.html

25 lines
893 B
HTML
Raw Normal View History

2022-11-18 01:43:00 +01:00
{% extends "settings/base.html" %}
2022-11-17 05:12:28 +01:00
2022-11-18 01:43:00 +01:00
{% block subtitle %}{{ domain.domain }}{% endblock %}
2022-11-17 05:12:28 +01:00
{% block content %}
<form action="." method="POST">
{% csrf_token %}
2022-11-18 01:43:00 +01: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 01:43:00 +01:00
</fieldset>
2022-11-17 05:12:28 +01:00
<div class="buttons">
<a href="{{ domain.urls.root }}" class="button secondary left">Back</a>
2022-11-17 05:12:28 +01:00
<a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
<button>Save</button>
</div>
</form>
{% endblock %}