{% load static %} {# Markdown Documentation Block Template #} {# Usage: {% include "django_admin/markdown_docs_block.html" with content=markdown_content title="Documentation" collapsible=True default_open=False %} #}
{% if collapsible %}
chevron_right {{ title|default:"Documentation" }} {% if default_open %}Click to collapse{% else %}Click to expand{% endif %}
{{ content|safe }}
{% else %}
{% if title %}

{{ title }}

{% endif %}
{{ content|safe }}
{% endif %}