+ {% url 'atlas:case_inline_field' case.pk 'report' as report_url %}
+ {% with endpoint_default=report_url|add:"?show_label=0" endpoint_edit=report_url|add:"?edit=1&show_label=0" %}
+ {% include 'atlas/partials/case_inline_field.html' with show_label=0 editing=False field_label="Report" can_edit=can_edit endpoint_url_default=endpoint_default endpoint_url_edit=endpoint_edit container_id='case-inline-report' field_kind='textarea' value=case.report display_value=case.report field_name='report' error_message='' %}
+ {% endwith %}
diff --git a/atlas/templates/atlas/partials/_case_search_item.html b/atlas/templates/atlas/partials/_case_search_item.html
new file mode 100644
index 00000000..1cfc815f
--- /dev/null
+++ b/atlas/templates/atlas/partials/_case_search_item.html
@@ -0,0 +1,34 @@
+{# Unified single case item used by search results and recent-created lists #}
+
+
+
+
{{ case.title }}
+ {{ case.created_date|date:"Y-m-d" }}
+
+
+ {% if case.author.all %}By {{ case.author.all|join:", " }}{% endif %}
+ {% for cond in case.condition.all %}
+ {% if cond.name %}{{ cond.name }}{% endif %}
+ {% endfor %}
+ {% for pres in case.presentation.all %}
+ {% if pres.name %}{{ pres.name }}{% endif %}
+ {% endfor %}
+ {% for ss in case.subspecialty.all %}
+ {% if ss.name %}{{ ss.name }}{% endif %}
+ {% endfor %}
+
+
{% if case.description %}{{ case.description|truncatechars:140 }}{% endif %}