Add QuestionReviewForm to question review view and update template to include form

This commit is contained in:
Ross
2025-10-27 10:38:49 +00:00
parent a404a335c0
commit 27e575f772
2 changed files with 10 additions and 7 deletions
@@ -54,6 +54,10 @@
{% endif %}
</div>
{% comment %} <span class="btn btn-sm btn-outline-success" data-bs-toggle="modal" data-bs-target="#reviewModal" hx-get="{% url 'sbas:question_set_review' question.pk %}?edit=1&new=1" hx-target="#review-form" hx-swap="innerHTML" hx-trigger="load">Add Review</button> {% endcomment %}
<form id="review-form">
{% include 'generic/partials/question_review_form.html' with app_name='sbas' question=question form=form %}
</form>
{% endblock %}