{% extends "base.html" %} {% load url %} {% load profiles %} {% load bleach %} {% load guardian_tags %} {% block title %}{{ object.title }} - Blogs - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ object.title }}

Published {{ object.created|date:"j N Y" }}

{{ object.content|md2html }}

Authors

    {% for author in object.authors.all %}
  • {{ author|user_profile_link }}
  • {% endfor %}
{% get_obj_perms request.user for object as "object_perms" %} {% if "change_post" in object_perms %} Add Author {% endif %} {% if object.tags.count != 0 %}

Tags

{% endif %} {% if "change_post" in object_perms %} {% if not object.published %} {% endif %}

Edit post

{% endif %}
{% endblock %}