-
-
{{ question.title|default:"(No title set)" }}
-
Created: {{ question.created_date|date:"d/m/Y" }}
-
+{% load partials %}
+
+{% partialdef links-partial %}
+
+{% endpartialdef %}
+
+{% block content %}
+
+
+
+
+
{{ question.title|default:"(No title set)" }}
+
Created: {{ question.created_date|date:"d/m/Y" }}
+
+ {% partial links-partial %}
+
Review status:
+
+ {# Placeholder while HTMX fetches review/form #}
+
+
{% autoescape off %}
{{ question.stem }}
diff --git a/sbas/templates/sbas/question_form.html b/sbas/templates/sbas/question_form.html
index 2a954b83..85f13ee3 100644
--- a/sbas/templates/sbas/question_form.html
+++ b/sbas/templates/sbas/question_form.html
@@ -1,23 +1,30 @@
{% extends "sbas/base.html" %}
{% load static %}
+{% load partials %}
{% block js %}
-
+
-{{ form.media }}
+ {{ form.media }}
{% endblock %}
{% block content %}
-Submit Question
-
+
{% endblock %}
\ No newline at end of file