{% extends 'easycms/base.html' %} {% block easycms_title %}{% if post %} Edit Post: {{ post.title }}{% else %}Create Post{% endif %}{% endblock easycms_title %} {% block easycms_head_extra %} {% endblock %} {% block easycms_h1 %} {% endblock easycms_h1 %} {% block easycms_content %}
View All Posts {% if post %} Preview Post {% if settings.front_end_post_urls_enabled %} View Live Post {% endif %} {% endif %} Create Category
{% if post %}

{{ post.title }}

{% else %}

Create Post

{% endif %}
{{ form.render_before_sections() }}
{% if post and (post.published or not access_control.can_publish_post()) %} {% else %} {% endif %} {% if post %} View Revision History {% endif %} {% if post and post.published and access_control.can_publish_post() %} Edit Publish Date {% endif %} {% if post %} Edit Snippet SEO and Author Settings {% if access_control.can_delete_post() %} Delete Post {% endif %}

Tags

{% if post.tags %}
    {% for tag in post.tags %}
  • {{ tag.name }}
  • {% endfor %}
{% else %}

This post has no tags

{% endif %} {% if access_control.can_tag_post() %} Edit Tags {% endif %} {% endif %}
{{ form.render_after_sections() }}
{% endblock easycms_content %}