{% extends 'base.html' %}
{% load markdownify i18n %}
{% 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 %}
{% block content %}
{% if object %}
{{ object.content|markdownify|safe }}
{% else %}
{{ no_object_available }}
{% endif %}
{% endblock %}