{% extends "tgcms/base.html" %} {% block title %}{% if post %}Edit post{% else %}New post{% endif %} — tgcms{% endblock %} {% block extra_head %}{{ form.media }}{% endblock %} {% block content %}

{% if post %}Edit post{% else %}New post{% endif %}

{% if post %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% if post %}

Blocks ({{ post.blocks.count }})

{% for block in post.blocks.all %}
{{ block.get_type_display }} {% if block.type == "heading" %}{{ block.text }}{% endif %} {% if block.type == "text" %}{{ block.text|truncatechars:80 }}{% endif %} {% if block.type == "photo" or block.type == "video" %} {% if block.file %}{{ block.file.name }}{% endif %} {% if block.caption %}{{ block.caption|truncatechars:60 }}{% endif %} {% endif %}
{% empty %}

No blocks yet. Add blocks via Django admin.

{% endfor %}

render() payload


    
{% endif %} {% endblock %}