You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
HTML
19 lines
424 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<div id="home_content">
|
|
<h1 class="header" id="title">GEO</h1>
|
|
<p id="position"></p>
|
|
<button id="store_location" onclick="store_location()">store my position</button>
|
|
<br><br><br>
|
|
|
|
{% for location in locations %}
|
|
|
|
<div >{{location.id}}: {{location.longitude}}, {{location.latitude}} <a href="location/{{location.id}}/delete">delete</a></div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|