Files
2019-10-27 09:10:37 +01:00

23 lines
472 B
HTML

{% extends "mobile/base.html" %}
{% block content %}
<body>
<h1>Bloom Hunt</h1>
<p>Be the <b>first</b> that scans a blooming tree in your neighborhood.</p>
<a class="btn btn-default" id="btn_scan" href="{% url 'mobile:scan' %}">Scan a blooming tree</a>
<p></p><br>
<h3>Shortly blooming species</h3>
<p>Especially look for the following trees, they are likely to bloom
soon:</p>
<ul>
{% for tree in prediction %}
<li>{{ tree }}</li>
{% endfor %}
</ul>
{% endblock %}