summaryrefslogtreecommitdiffstats
path: root/templates/admin/federation_edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/federation_edit.html')
-rw-r--r--templates/admin/federation_edit.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/admin/federation_edit.html b/templates/admin/federation_edit.html
new file mode 100644
index 0000000..f96e7ae
--- /dev/null
+++ b/templates/admin/federation_edit.html
@@ -0,0 +1,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 %}