2024-08-21 19:38:01 +00:00
|
|
|
<form method="post" enctype="multipart/form-data" style="background-color: rgb(205, 243, 148);">
|
2024-08-17 19:05:28 +00:00
|
|
|
{{ form.hidden_tag() }}
|
2024-08-21 19:38:01 +00:00
|
|
|
<!--<p>
|
2024-08-17 19:05:28 +00:00
|
|
|
{{ form.description.label }}<br>
|
|
|
|
|
{{ form.description(size=32) }}
|
2024-08-21 19:38:01 +00:00
|
|
|
</p>-->
|
|
|
|
|
|
2024-08-17 19:05:28 +00:00
|
|
|
{{ form.photo.label }}<br>
|
|
|
|
|
{{ form.photo() }}
|
2024-08-21 19:38:01 +00:00
|
|
|
{{ form.typeofpin }}
|
|
|
|
|
|
|
|
|
|
<label for="lat">Latitud:</label><br>
|
2024-08-17 19:05:28 +00:00
|
|
|
<input type="text" id="lat" name="lat" readonly>
|
2024-08-21 19:38:01 +00:00
|
|
|
<label for="lng">Longitud:</label><br>
|
2024-08-17 19:05:28 +00:00
|
|
|
<input type="text" id="lng" name="lng" readonly>
|
|
|
|
|
<p>{{ form.submit() }}</p>
|
|
|
|
|
</form>
|