takahe/templates/admin/federation_edit.html
Andrew Godwin 113db4ab3a Fixed #376: Emoji admin page
Also did a new table style for admin pages
2023-01-10 20:31:50 -07:00

19 lines
641 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_federation }}" class="button secondary left">Back</a>
<a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
<button>Save</button>
</div>
</form>
{% endblock %}