mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-07 07:59:46 +00:00
19 lines
630 B
HTML
19 lines
630 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}{{ domain.domain }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<h1>{{ domain }}</h1>
|
|
<fieldset>
|
|
<legend>Federation Controls</legend>
|
|
{% include "forms/_field.html" with field=form.blocked %}
|
|
</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 %}
|