User:Kim/Stations, Skills, Resources/Flask
JSON
My field observations
{% if observations %}
{% for observation in observations %}
{% if observation.sunny %}
☀
{% endif %}
{% if observation.rainy %}
☁
{% endif %}
{% endfor %}
{% endif %}
<form method="POST"> <textarea name="observation"></textarea> <input type="text" name="place"></input> <label for="place">place</label> <input type="checkbox" name="sunny" id=""> <label for="sunny">sunny</label> <input type="checkbox" name="rainy" id=""> <label for="rainy">rainy</label>
<input type="submit" value="Save!"> </form>