mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
14 lines
390 B
HTML
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 %}
|