mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
23 lines
800 B
HTML
23 lines
800 B
HTML
{% extends "admin/base_main.html" %}
|
|
|
|
{% block subtitle %}{{ domain.domain }}{% endblock %}
|
|
|
|
{% block settings_content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<h1>{{ domain }}</h1>
|
|
<fieldset>
|
|
<legend>Federation Controls</legend>
|
|
{% include "forms/_field.html" with field=form.blocked %}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Admin Notes</legend>
|
|
{% include "forms/_field.html" with field=form.notes %}
|
|
</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 %}
|