2022-06-22 13:11:22 -05:00
|
|
|
{%- import "utils.html" as utils with context -%}
|
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
|
2022-06-24 04:33:05 -05:00
|
|
|
{% if in_reply_to_object %}
|
2022-06-26 04:09:43 -05:00
|
|
|
<p>In reply to:</p>
|
2022-06-24 04:33:05 -05:00
|
|
|
{{ utils.display_object(in_reply_to_object) }}
|
|
|
|
{% endif %}
|
|
|
|
|
2022-06-22 13:11:22 -05:00
|
|
|
<form action="{{ request.url_for("admin_actions_new") }}" enctype="multipart/form-data" method="POST">
|
|
|
|
{{ utils.embed_csrf_token() }}
|
|
|
|
{{ utils.embed_redirect_url() }}
|
2022-06-26 11:07:55 -05:00
|
|
|
<p>
|
|
|
|
<select name="visibility">
|
2022-06-26 11:40:25 -05:00
|
|
|
{% for (k, v) in visibility_choices %}
|
|
|
|
<option value="{{ k }}" {% if in_reply_to_object and in_reply_to_object.visibility.name == k %}selected{% endif %}>{{ v }}</option>
|
2022-06-26 11:07:55 -05:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
<textarea name="content" rows="10" cols="50" autofocus="autofocus" designMode="on" style="font-size:1.2em;width:95%;">{{ content }}</textarea>
|
2022-06-24 04:33:05 -05:00
|
|
|
<input type="hidden" name="in_reply_to" value="{{ request.query_params.in_reply_to }}">
|
2022-06-26 04:09:43 -05:00
|
|
|
<p>
|
|
|
|
<input name="files" type="file" multiple>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<input type="submit" value="Publish">
|
|
|
|
</p>
|
2022-06-22 13:11:22 -05:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|