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