{% extends "base_template.html" %} {% block title %}{{ _('Edit post') if post else _('New post') }}{% endblock %} {% block content %}

{{ _('Edit post') if post else _('New post') }}

{{ _('← Back to posts') }}
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %}
{% from "media/_picker.html" import media_picker %} {{ media_picker("featured_image", post.featured_image if post else None, media, value_attr="url") }}
{% for c in categories %}
{% endfor %}
{% if not categories %}
{{ _('No categories yet.') }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}