1
0
forked from orson/bachemap
bachemap/templates/dashboard.html
2024-08-26 13:40:34 -06:00

53 lines
1.2 KiB
HTML

{% extends 'secondbase.html' %}
{% block content %}
<h3>Hola {{current_user.username}}</h3>
<p>Tu link de invitación es:</p>
<p>https://baches.qro.mx/registrame/{{current_user.referral_code}}</p>
{% if pins %}
{% for pin in pins %}
<table border="1" cellpadding="5" cellspacing="0">
<thead>
<tr>
<th>Field</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>_id</td>
<td>{{ pin._id }}</td>
</tr>
<tr>
<td>Time</td>
<td>{{ pin.time }}</td>
</tr>
<tr>
<td>Photo</td>
<td>{{ pin.photo }}</td>
</tr>
<tr>
<td>Latitude</td>
<td>{{ pin.lat }}</td>
</tr>
<tr>
<td>Longitude</td>
<td>{{ pin.lng }}</td>
</tr>
<tr>
<td>Type of Pin</td>
<td>{{ pin.typeofpin }}</td>
</tr>
<tr>
<td>Added By</td>
<td>{{ pin.added_by }}</td>
</tr>
</tbody>
</table>
{% endfor %}
{% endif %}
{% endblock %}