{% extends 'base.html' %} {% load markdownify i18n %} {% block content %}

{% block card_title %}{{ object.title }}{% endblock %}

{% block card-actions %} {% if create_url and not object and user.is_authenticated %} {% endif %} {% if edit_url and object and user.is_authenticated %} {# FIXME this will most probably not work #} {% endif %} {% endblock %}

{% if object %} {{ object.content|markdownify|safe }} {% else %} {{ no_object_available }} {% endif %}

{# #}
{% endblock %}