{% extends 'base.html' %} {# Thumbnail tags #} {% load thumbnail %} {# I18N #} {% load i18n %} {# Title Override #} {% block title %}{{work.title}}{% endblock %} {# content #} {% block content %}

{{work.title}}

{% trans 'Published on' %} - {{work.pub_date}}

{% trans 'Published In' %} - {{work.category}}

{% trans 'Tags : ' %} {% for tag in work.tags.all %} {{tag}} {% endfor %}

{{work.description|safe}}

{% for picture in work.folder.files.all %} {% endfor %}
{% if work.get_previous_work %}{% trans 'Previous Work' %}{% endif %} {% if work.get_next_work %}{% trans 'Next Work' %}{% endif %}
{% trans 'Return to list' %} {% endblock %}