+
+
+
+ Authors: {{ collection.get_authors }}
+
+
+
+ {% comment %} Show archive state and counts per exam type {% endcomment %}
+ {% if collection.archive %}
+ Archived
+ {% endif %}
+
+ {# Total exams count (sum of known related exam sets) #}
+ {% with a=collection.anatomy_exams.count l=collection.longs_exams.count p=collection.physics_exams.count r=collection.rapids_exams.count s=collection.sbas_exams.count %}
+ {% with total=a|add:l|add:p|add:r|add:s %}
+ {{ total }} exams
+ {% endwith %}
+ {# Per-type badges (only show non-zero) #}
+ {% if a %}Anatomy {{ a }}{% endif %}
+ {% if l %}Longs {{ l }}{% endif %}
+ {% if p %}Physics {{ p }}{% endif %}
+ {% if r %}Rapids {{ r }}{% endif %}
+ {% if s %}SBAs {{ s }}{% endif %}
+ {% endwith %}
+
+
+
+