{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{{ object.title }}{% endblock %} {% block content %} {% if object %}

{{ object.title}}

{{ object.subtitle }}

{{ object.description | safe }}

{% if object.text %}

{{ object.text | safe }}

{% endif %}
{% if object.file %}

{{ object.file }}

{% endif %}
{% else %}

{% trans "No category found" %}!

{% endif %} {% endblock %}