{% extends 'blogango/base.html' %} {% load gravatar %} {% load pingback_tags %} {% load blogango_filters %} {% block title %} {{entry.title}} - {{block.super}} {% endblock %} {% block breadcrumbs %}
  • Blog
  • {{ entry.created_on|date:'N Y' }}
  • {{ entry.title }}
  • {% endblock %} {% block content %} {% with 'True' as post_detail %} {% include 'blogango/entry_snippets.html' %} {% endwith %} {% comment %}
    shabda
    {{ entry.created_on|date:'jS N, Y' }}
    Comments
    Reactions

    {{ entry.title }}

    By : {{ entry.created_by }}{# - Django Geek #}

    {{ entry.text|safe }}

    more info..
    Topics : {% for tag in entry.tags.all %} {{ tag.name }} {% endfor %}
    {% endcomment %} {% if comments %}

    Comments

    {% for comment in comments %}
    {% if comment.user_url %} {{ comment.user_name }} {% else %} {{ comment.user_name }} {% endif %}

    {{ comment.text|striptags|urlize|linebreaks }}

    commmenttor
    {% endfor %} {% endif %}
    {% if reactions %}

    Reactions

    {% for reaction in reactions %}
    {{ reaction.user_name }}

    {{ reaction.text|safe|twitterize }}

    {% if reaction.profile_image %} commmenttor {% endif %}
    {% endfor %} {% endif %} {% get_pingback_list for entry as pingbacks %} {% if pingbacks %} {% for pingback in pingbacks %}
    {{ pingback.date|date:'jS N, Y' }}, pingback from {{ pingback.url|urlizetrunc:40 }}
    {{ pinback.content }}
    {% endfor %} {% endif %}
    {% if entry.comments_allowed%}
    {% csrf_token %}
    Post a comment Name : {{comment_form.name.errors}}
    {{comment_form.name}}
    Email : {{comment_form.email.errors}}
    {{comment_form.email}}
    Your site url: {{comment_form.url.errors}}
    {{comment_form.url}}
    Comment : {{comment_form.text.errors}}
    {{comment_form.text}}
    {% else %}
    Comments are disabled.
    {% endif %}
    {% endblock %} {% comment %}

    {{entry.title}}

    {# {% include "blogango/entry_controls.html" %} #}
    {{entry.text|textile}}
    {% endcomment %}