pyfedi/app/templates/community/add_post.html
2024-07-08 21:34:40 +02:00

14 lines
390 B
HTML

{% extends "post/post_edit.html" %}
{% block title %}<h1>{{ _('Create post') }}</h1>{% endblock %}
{% block post_type %}
<div class="form-group">
<label class="form-control-label" for="type_of_post">
{{ _('Type of post') }}
</label>
{% include 'community/_add_post_types.html' %}
</div>
{{ render_field(form.communities) }}
{% endblock %}