You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% 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 %}
|