Plume/templates/posts/new.html.tera

67 lines
2.5 KiB
Plaintext
Raw Normal View History

2018-05-09 19:53:12 +02:00
{% extends "base" %}
{% import "macros" as macros %}
2018-04-23 16:25:39 +02:00
2018-05-09 19:53:12 +02:00
{% block title %}
2018-09-07 19:51:53 +02:00
{% if editing %}
{{ "Edit {{ post }}" | _(post=form.title) }}
{% else %}
{{ "New post" | _ }}
{% endif %}
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-09-07 19:51:53 +02:00
<h1>
{% if editing %}
{{ "Edit {{ post }}" | _(post=form.title) }}
{% else %}
{{ "Create a post" | _ }}
{% endif %}
</h1>
<form class="new-post" method="post">
2018-07-18 15:34:18 +02:00
{{ macros::input(name="title", label="Title", errors=errors, form=form, props="required") }}
2018-09-04 13:26:13 +02:00
{{ macros::input(name="subtitle", label="Subtitle", errors=errors, form=form, optional=true) }}
2018-05-09 19:53:12 +02:00
{% if errors is defined and errors.content %}
{% for err in errors.content %}
<p class="error">{{ err.message | default(value="Unknown error") | _ }}</p>
{% endfor %}
{% endif %}
<label for="plume-editor">{{ "Content" | _ }}<small>{{ "Markdown is supported" | _ }}</small></label>
2018-10-30 18:16:24 +01:00
<textarea id="plume-editor" name="content" rows="20">{{ form.content | default(value="") }}</textarea>
{{ macros::input(name="tags", label="Tags, separated by commas", errors=errors, form=form, optional=true) }}
{% set license_infos = "Default license will be {{ instance.default_license }}" | _(instance=instance) %}
{{ macros::input(name="license", label="License", errors=errors, form=form, optional=true, details=license_infos) }}
2018-05-09 19:53:12 +02:00
<label for="cover">{{ "Illustration" | _ }}<small>{{ "Optional" | _ }}</small>{{ form.cover }}</label>
<select id="cover" name="cover">
<option value="none" {% if not form.cover %}selected{% endif %}>{{ "None" | _ }}</option>
{% for media in medias %}
<option value="{{ media.id }}" {% if form.cover == media.id %}selected{% endif %}>
{{ media.alt_text | default(value=media.content_warning) }}
</option>
{% endfor %}
</select>
{% if is_draft %}
<label for="draft">
<input type="checkbox" name="draft" id="draft" checked>
{{ "This is a draft, don't publish it yet." | _ }}
</label>
{% endif %}
2018-09-07 19:51:53 +02:00
{% if editing %}
<input type="submit" value="{{ "Update" | _ }}" />
{% else %}
{% if is_draft %}
<input type="submit" value="{{ "Update or publish" | _ }}" />
{% else %}
<input type="submit" value="{{ "Publish" | _ }}" />
{% endif %}
2018-09-07 19:51:53 +02:00
{% endif %}
2018-05-09 19:53:12 +02:00
</form>
<script src="/static/js/autoExpand.js"></script>
2018-05-09 19:53:12 +02:00
{% endblock content %}