Commit f9176c1c by dragonfi

Properly close input tags

parent 78bf201b
<fieldset class="choices questionnaire"> <fieldset class="choices questionnaire">
<legend class="question"> <legend class="question">
<h3>QUESTION</h3> <h3>QUESTION {{ self.index }}</h3>
<p>{{ self.question }}</p> <p>{{ self.question }}</p>
</legend> </legend>
<div class="choices-list"> <div class="choices-list">
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label class="choice-label"> <label class="choice-label">
<input class="choice-selector" type="radio" name="{{ self.name }}" value="{{ choice.value }}"{% if self.student_choice == choice.value %} checked{% endif %}> {{ choice.content }} <input class="choice-selector" type="radio" name="{{ self.name }}" value="{{ choice.value }}"{% if self.student_choice == choice.value %} checked{% endif %} />{{ choice.content }}
</label> </label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
......
...@@ -3,35 +3,35 @@ ...@@ -3,35 +3,35 @@
<div class="choices-list"> <div class="choices-list">
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input class="choice-selector" type="radio" name="{{ self.name }}" value="1"{% if self.student_choice == '1' %} checked{% endif %}>1</label> <label><input class="choice-selector" type="radio" name="{{ self.name }}" value="1"{% if self.student_choice == '1' %} checked{% endif %} />1</label>
<span class="low"> - {{ self.low }}</span> <span class="low"> - {{ self.low }}</span>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input class="choice-selector" type="radio" name="{{ self.name }}" value="2"{% if self.student_choice == '2' %} checked{% endif %}>2</label> <label><input class="choice-selector" type="radio" name="{{ self.name }}" value="2"{% if self.student_choice == '2' %} checked{% endif %} />2</label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input class="choice-selector" type="radio" name="{{ self.name }}" value="3"{% if self.student_choice == '3' %} checked{% endif %}>3</label> <label><input class="choice-selector" type="radio" name="{{ self.name }}" value="3"{% if self.student_choice == '3' %} checked{% endif %} />3</label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input class="choice-selector" type="radio" name="{{ self.name }}" value="4"{% if self.student_choice == '4' %} checked{% endif %}>4</label> <label><input class="choice-selector" type="radio" name="{{ self.name }}" value="4"{% if self.student_choice == '4' %} checked{% endif %} />4</label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input class="choice-selector" type="radio" name="{{ self.name }}" value="5"{% if self.student_choice == '5' %} checked{% endif %}>5</label> <label><input class="choice-selector" type="radio" name="{{ self.name }}" value="5"{% if self.student_choice == '5' %} checked{% endif %} />5</label>
<span class="low"> - {{ self.high }}</span> <span class="low"> - {{ self.high }}</span>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
{% for choice in custom_choices %} {% for choice in custom_choices %}
<div class="choice"> <div class="choice">
<div class="choice-result icon-2x"></div> <div class="choice-result icon-2x"></div>
<label><input type="radio" name="{{ self.name }}" value="{{ choice.value }}"{% if self.student_choice == '{{ choice.value }}' %} checked{% endif %}> {{ choice.content }}</label> <label><input type="radio" name="{{ self.name }}" value="{{ choice.value }}"{% if self.student_choice == '{{ choice.value }}' %} checked{% endif %} />{{ choice.content }}</label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
{% endfor %} {% endfor %}
......
...@@ -26,12 +26,12 @@ ...@@ -26,12 +26,12 @@
<span class="assessment-checkmark icon-2x"></span> <span class="assessment-checkmark icon-2x"></span>
{% endif %} {% endif %}
<input type="button" class="input-main" value="Submit" disabled="disabled"></input> <input type="button" class="input-main" value="Submit" disabled="disabled" />
{% if self.mode == 'assessment' %} {% if self.mode == 'assessment' %}
<input type="button" class="input-next" value="Next Question" disabled="disabled"></input> <input type="button" class="input-next" value="Next Question" disabled="disabled" />
<input type="button" class="input-review" value="Review grade" disabled="disabled"></input> <input type="button" class="input-review" value="Review grade" disabled="disabled" />
<input type="button" class="input-try-again" value="Try again" disabled="disabled"></input> <input type="button" class="input-try-again" value="Try again" disabled="disabled" />
{% endif %} {% endif %}
<div class="attempts" data-max_attempts="{{ self.max_attempts }}" data-num_attempts="{{ self.num_attempts }}"></div> <div class="attempts" data-max_attempts="{{ self.max_attempts }}" data-num_attempts="{{ self.num_attempts }}"></div>
......
<fieldset class="choices questionnaire" data-hide_results="{{self.hide_results}}"> <fieldset class="choices questionnaire" data-hide_results="{{self.hide_results}}">
<legend class="question"> <legend class="question">
<h3>QUESTION</h3> <h3>QUESTION {{ self.index }}</h3>
<p>{{ self.question }}</p> <p>{{ self.question }}</p>
</legend> </legend>
<div class="choices-list"> <div class="choices-list">
...@@ -11,9 +11,8 @@ ...@@ -11,9 +11,8 @@
<label class="choice-label"> <label class="choice-label">
<input class="choice-selector" type="checkbox" name="{{ self.name }}" <input class="choice-selector" type="checkbox" name="{{ self.name }}"
value="{{ choice.value }}" value="{{ choice.value }}"
{% if choice.value in self.student_choices %} checked{% endif %}> {% if choice.value in self.student_choices %} checked{% endif %} />
{{ choice.content }} {{ choice.content }}
</input>
</label> </label>
<div class="choice-tips"></div> <div class="choice-tips"></div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment