diff --git a/application/blueprints/questions/views.py b/application/blueprints/questions/views.py index 2e602ac..311a478 100644 --- a/application/blueprints/questions/views.py +++ b/application/blueprints/questions/views.py @@ -10,7 +10,7 @@ TextareaForm, ) from application.forms import DeleteForm -from application.models import Answer, Consideration, Question, QuestionType +from application.models import Answer, Consideration, Question, QuestionType, Stage from application.utils import login_required, true_false_to_bool questions = Blueprint( @@ -86,6 +86,7 @@ def index(consideration_slug, stage): return render_template( "questions/set.html", stage=stage, + stages=Stage, consideration=consideration, questions=questions_to_display, starting_question=start_question, diff --git a/application/templates/partials/question-set-navigation.html b/application/templates/partials/question-set-navigation.html new file mode 100644 index 0000000..906faa0 --- /dev/null +++ b/application/templates/partials/question-set-navigation.html @@ -0,0 +1,6 @@ +
Stages
+ diff --git a/application/templates/questions/set.html b/application/templates/questions/set.html index 46d79a1..ab70b39 100644 --- a/application/templates/questions/set.html +++ b/application/templates/questions/set.html @@ -32,7 +32,16 @@These are the questions we answer during the {{stage.value}} stage.
+Answering them wil help us learn more about the {{ consideration.name }} consideration, determine if a data standard is required and whether we know enough to move on to the next stage.
{%- if not config.AUTHENTICATION_ON or session["user"] %}