{% extends 'dashboard/base/base.html' %} {% block title %} {{ post.title }}| Dashboard {% endblock %} {% block custom_css %} img{ width:80%; margin:0 auto; border-radius:10px; } h5{ padding-top:30px; } h3{ padding:10px 0px; color:black; } .text_div{display:flex; flex-wrap:wrap;} .text_div p{ padding:5px;} {% endblock %} {% load static %} {% block body %} {% load humanize %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

{{ post.title }}

Post Under : {{ post.catagories }}

Date : {{ post.created_at|naturaltime }}

{% if post.status == 'active' %}

Status : {{ post.status }}

{% else %}

Status : {{ post.status }}

{% endif %} {% if post.featured == True %}

Featured : Post Featured

{% else %}

Featured : Not Featured Yet

{% endif %}
{% if post.image %} {% else %} {% endif %}
{{ post.detail }}
{% if post.visible == False %} Make Visible {% else %} Hide Post {% endif %} Edit Delete Post
{% endblock %}