2024-09-05 05:15:16 +00:00
|
|
|
<form method="post" enctype="multipart/form-data" >
|
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-09-05 03:22:51 +00:00
|
|
|
{{ form.description.label }}
|
|
|
|
|
{{ form.description }}
|
|
|
|
|
{{ form.photo.label }}
|
2024-08-17 19:05:28 +00:00
|
|
|
{{ form.photo() }}
|
2024-08-21 19:38:01 +00:00
|
|
|
{{ form.typeofpin }}
|
|
|
|
|
|
2024-09-05 05:15:16 +00:00
|
|
|
<label for="lat">Latitud:</label>
|
2024-08-17 19:05:28 +00:00
|
|
|
<input type="text" id="lat" name="lat" readonly>
|
2024-09-05 05:15:16 +00:00
|
|
|
<label for="lng">Longitud:</label>
|
2024-08-17 19:05:28 +00:00
|
|
|
<input type="text" id="lng" name="lng" readonly>
|
2024-09-05 05:15:16 +00:00
|
|
|
<table style="background-color: rgba(0,0,0,0);">
|
|
|
|
|
<tr style="background-color: transparent;">
|
|
|
|
|
<td style="background-color:transparent">{{ form.submit() }}</td>
|
|
|
|
|
<td style="background-color:transparent"><button style="background-color: red; color:white" id="cancel-add" type="button">Cancelar</button></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2024-08-17 19:05:28 +00:00
|
|
|
</form>
|