summaryrefslogtreecommitdiffstats
path: root/templates/admin/federation_edit.html
blob: f96e7ae5cfb0e195fc76d4e09d1ecd2d2eab20bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}