{% extends 'atlas/base.html' %} {% block content %} {% if resource %} {% include "atlas/resource_link_header.html" %} {% endif %}
{{ resource.name }}
by {{ resource.get_authors|default:"Unknown" }}
{# Media preview: image or video autosized, clickable to open full-size modal #} {% if resource.file or resource.url %}
{% comment %}Prefer local file if present, otherwise try URL{% endcomment %} {% if resource.file %} {% with src=resource.file.url %} {% include 'atlas/partials/resource_media.html' with src=src resource=resource %} {% endwith %} {% else %} {% with src=resource.url %} {% include 'atlas/partials/resource_media.html' with src=src resource=resource %} {% endwith %} {% endif %}
{% endif %} {% if resource.description %}

{{ resource.description|linebreaksbr }}

{% endif %}
{% if resource.url %}
URL
{{ resource.url }}
{% endif %} {% if resource.file %}
File
Download {% if resource.file.name %} ({{ resource.file.name|truncatechars:40 }}) {% endif %}
{% endif %}
Source
{{ resource.get_display }}
Used in cases
{% if resource.case_set.all %} {% else %}

This resource is not used in any cases.

{% endif %}
{% endblock %}