mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
24 lines
893 B
HTML
24 lines
893 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}{{ domain.domain }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<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 %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{{ domain.urls.root }}" class="button secondary left">Back</a>
|
|
<a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|