{% extends "posts/show/post.html" %} {% load static %} {% load posts %} {% load text_filters %} {# this type in inherited from "post" #} {% block post_header %} Проект: {{ post.title | rutypography }} {% include "posts/widgets/publicity_preferences.html" with post=post %} {% if post.deleted_at %} Удалённый пост {% elif not post.is_visible %} {% include "posts/widgets/draft_label.html" %} {% endif %} {% if post.label %} {% include "posts/widgets/label.html" with label=post.label %} {% endif %} {% include "posts/widgets/post_actions_line.html" %} {% if post.metadata.badges %} {% include "badges/widgets/badges.html" with badges=post.metadata.badges %} {% endif %} {% if post.image %} {% endif %} {% endblock %}