mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 11:21:13 +00:00
24 lines
942 B
HTML
24 lines
942 B
HTML
{% extends "admin/base_main.html" %}
|
|
|
|
{% block subtitle %}Announcement #{{ announcement.pk }}{% 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 }}?page={{ page }}" class="button secondary left">Back</a>
|
|
<a href="{{ announcement.urls.admin_delete }}" class="button delete">Delete</a>
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|