diff --git a/atlas/templates/atlas/case_display_block.html b/atlas/templates/atlas/case_display_block.html index 5e4dda6c..6ec10389 100755 --- a/atlas/templates/atlas/case_display_block.html +++ b/atlas/templates/atlas/case_display_block.html @@ -1,3 +1,24 @@ +{% load partials %} + +{% partialdef case-series %} + {% for series in case.series.all %} + + + Series {{ forloop.counter }}:
+ + {{series.get_block}} + +
+ + + Popup + +
+
+ {% endfor %} +{% endpartialdef %} +

Case: {{ case.title }}

{% if case.previous_case or case.next_case %} @@ -120,27 +141,12 @@
Series:
- {% for series in case.series.all %} - - - Series {{ forloop.counter }}:
- - {{series.get_block}} - -
- - - Popup - -
-
- {% endfor %} + {% partial case-series %}
Add new series
Import new uploads
-
+
+