2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block title %}
|
2018-06-17 17:26:15 +02:00
|
|
|
{{ "New post" | _ }}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock title %}
|
2018-04-23 16:25:39 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block content %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<h1>{{ "Create a post" | _ }}</h1>
|
2018-05-19 16:26:56 +02:00
|
|
|
<form class="new-post" method="post">
|
2018-07-06 19:29:36 +02:00
|
|
|
{{ macros::input(name="title", label="Title", errors=errors, form=form) }}
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-07-06 19:29:36 +02:00
|
|
|
<label for="{{ name }}">{{ label | _ }}</label>
|
|
|
|
{% if errors is defined and errors.content %}
|
|
|
|
{% for err in errors.content %}
|
|
|
|
<p class="error">{{ err.message | _ }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<textarea name="content" placeholder="{{ "Content" | _ }}" value="{{ form.content | default(value="") }}"></textarea>
|
|
|
|
|
|
|
|
{{ macros::input(name="license", label="License", errors=errors, form=form) }}
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-06-17 20:14:58 +02:00
|
|
|
<input type="submit" value="{{ "Publish" | _ }}" />
|
2018-05-09 19:53:12 +02:00
|
|
|
</form>
|
|
|
|
{% endblock content %}
|