From 7f68fc23c6516bb62074e4e4dfa32f4464e2fa8d Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 20 Oct 2025 21:23:02 +0100 Subject: [PATCH] Update question detail template to improve exam and finding link visibility with white text --- sbas/templates/sbas/question_detail.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sbas/templates/sbas/question_detail.html b/sbas/templates/sbas/question_detail.html index cbc45177..38fc7c57 100644 --- a/sbas/templates/sbas/question_detail.html +++ b/sbas/templates/sbas/question_detail.html @@ -71,7 +71,7 @@
Examinations:
{% for exam in question.exams.all %} - {{ exam }} + {{ exam }} {% empty %} None {% endfor %} @@ -94,7 +94,7 @@
{% if question.finding.exists %} {% for f in question.finding.all %} - {{ f.name }} + {{ f.name }} {% endfor %} {% else %}
None
@@ -118,7 +118,7 @@
{% if question.condition.exists %} {% for c in question.condition.all %} - {{ c.name }} + {{ c.name }} {% endfor %} {% else %}
None
@@ -130,7 +130,7 @@
{% if question.presentation.exists %} {% for p in question.presentation.all %} - {{ p.name }} + {{ p.name }} {% endfor %} {% else %}
None
@@ -142,7 +142,7 @@
{% if question.subspecialty.exists %} {% for ss in question.subspecialty.all %} - {{ ss.name }} + {{ ss.name }} {% endfor %} {% else %}
None
@@ -152,14 +152,14 @@
Open Access:
{% if question.open_access %} - Yes + Yes {% else %} - No + No {% endif %}
+
-
{% endblock %} \ No newline at end of file