mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-10 17:31:03 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block title %}Compose{% endblock %}
|
|
|
|
{% block settings_content %}
|
|
<form action="." method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Compose</legend>
|
|
<p><i>For more advanced posting options, like editing and multiple image uploads, please use an app.</i></p>
|
|
{{ form.id }}
|
|
{% include "forms/_field.html" with field=form.text %}
|
|
{% include "forms/_field.html" with field=form.visibility %}
|
|
{% include "forms/_field.html" with field=form.content_warning %}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Image</legend>
|
|
{% include "forms/_field.html" with field=form.image %}
|
|
{% include "forms/_field.html" with field=form.image_caption %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<span id="character-counter">{{ config.post_length }}</span>
|
|
<button id="post-button">{% if post %}Save Edits{% else %}Post{% endif %}</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|