mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
23 lines
820 B
HTML
23 lines
820 B
HTML
{% extends "admin/base_main.html" %}
|
|
|
|
{% block subtitle %}Create Announcement{% endblock %}
|
|
|
|
{% block settings_content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Announcement</legend>
|
|
{% include "forms/_field.html" with field=form.text %}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Visibility</legend>
|
|
{% include "forms/_field.html" with field=form.published %}
|
|
{% include "forms/_field.html" with field=form.start %}
|
|
{% include "forms/_field.html" with field=form.end %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{{ announcement.urls.admin_root }}" class="button secondary left">Back</a>
|
|
<button>Create</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|