{% extends 'quintet/post.html' %} {% load static %} {% block title %}{{ post.title }}{% endblock %} {% block content %}
{% for contributor in post.contributors.all %} {{ contributor.user.get_full_name }}, {{ contributor.role.all|join:', ' }} {% endfor %}
{% include 'quintet/toolbars/toolbars.html' %}

{{ post.title }}

{% if post.section %}

{{ post.section }}

{% endif %}
{{ post.html|safe }}

{% for tag in post.tags.all %} {{ tag }} {% endfor %}
{% include 'quintet/comments.html' %} {% endblock %} {% block js %} {% endblock %}