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.
XPPL/app/templates/home.html

19 lines
424 B
HTML

6 years ago
{% extends "base.html" %}
{% block main %}
6 years ago
<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>
6 years ago
<br><br><br>
{% for location in locations %}
6 years ago
<div >{{location.id}}: {{location.longitude}}, {{location.latitude}} <a href="location/{{location.id}}/delete">delete</a></div>
6 years ago
{% endfor %}
6 years ago
</div>
6 years ago
{% endblock %}