This commit is contained in:
Ross
2021-12-11 23:35:23 +00:00
parent 3dbb75ed4e
commit 64c7016aed
+42 -40
View File
@@ -21,51 +21,53 @@
<button id="add-new-cids">Add New</button> <button id="add-new-cids">Add New</button>
<input type="number" id="add-number" value="number to add"> <input type="number" id="add-number" value="number to add">
<span> <div>
Physics Exams<br/> <span>
<select id="physics-exams" multiple="multiple"> Physics Exams<br/>
{% for name, id in physics_exams %} <select id="physics-exams" multiple="multiple">
<option value="{{id}}">{{name}}</option> {% for name, id in physics_exams %}
{% endfor %} <option value="{{id}}">{{name}}</option>
{% endfor %}
</select> </select>
</span> </span>
<span> <span>
Rapid Exams<br/> Rapid Exams<br/>
<select id="rapid-exams" multiple="multiple"> <select id="rapid-exams" multiple="multiple">
{% for name, id in rapid_exams %} {% for name, id in rapid_exams %}
<option value="{{id}}">{{name}}</option> <option value="{{id}}">{{name}}</option>
{% endfor %} {% endfor %}
</select> </select>
</span> </span>
<span> <span>
Sba Exams<br/> Sba Exams<br/>
<select id="sbas-exams" multiple="multiple"> <select id="sbas-exams" multiple="multiple">
{% for name, id in sbas_exams %} {% for name, id in sbas_exams %}
<option value="{{id}}">{{name}}</option> <option value="{{id}}">{{name}}</option>
{% endfor %} {% endfor %}
</select> </select>
</span> </span>
<span> <span>
Long Exams<br/> Long Exams<br/>
<select id="longs-exams" multiple="multiple"> <select id="longs-exams" multiple="multiple">
{% for name, id in longs_exams %} {% for name, id in longs_exams %}
<option value="{{id}}">{{name}}</option> <option value="{{id}}">{{name}}</option>
{% endfor %} {% endfor %}
</select> </select>
</span> </span>
<span> <span>
Anatomy Exams<br/> Anatomy Exams<br/>
<select id="anatomy-exams" multiple="multiple"> <select id="anatomy-exams" multiple="multiple">
{% for name, id in anatomy_exams %} {% for name, id in anatomy_exams %}
<option value="{{id}}">{{name}}</option> <option value="{{id}}">{{name}}</option>
{% endfor %} {% endfor %}
</select> </select>
</span> </span>
</div>
</details> </details>
{% endblock %} {% endblock %}