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.

23 lines
472B

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