25 lines
514 B
HTML
25 lines
514 B
HTML
{% extends "mobile/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Scan a blooming tree!</h1>
|
|
|
|
<p id="question_p" class="">{{ question.text }}</p>
|
|
|
|
<table id="options_p" class="">
|
|
<tr>
|
|
|
|
{% for option in question.options %}
|
|
<td width=30%>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<input name="question" type="hidden" value="{{ question.key }}">
|
|
<input name="chosen_option" class="btn btn-default" type="submit" value="{{ option.text }}">
|
|
</form>
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
|
|
{% endblock %}
|