{% extends 'cPanel/base.html' %} {% load cms_tags %} {% block content %} Blog Detail {{blogObj.title}} By {{blogObj.owner}} | Published On : {{blogObj.first_published_at|date:'d M,Y'}} | Read Time : {{blogObj.blPoReadingTime}} mins | {% if blogObj.product %} {{blogObj.product.coProdCat.catName}}, {{blogObj.product.coProdCat}} {% endif %} | {% if blogObj.blogStory %} Web Story {% endif %} {{blogObj.shortDesc|safe}} {% for block in blogObj.body %} {% if block.block_type == 'section' %} {% include 'components/BlogPageBlock/sectionBlock.html' %} {% elif block.block_type == 'row' %} {% include 'components/BlogPageBlock/rowBlock.html' %} {% else %} {{block.block_type}} {% endif %} {% endfor %} Comments {% for item in blogObj.blog_comments.all %} {{item.posted_by}} {{item.createdAt |date:'d M,y'}} {% if item.comment %} {{item.comment|safe|truncatewords:10}} Posted By : {{item.posted_by}} {{item.createdAt |date:'d M,Y'}} Comment : {{item.comment|safe}} Okay {% endif %} {% endfor %} {% endblock content %}
Comment : {{item.comment|safe}}