1
0
forked from orson/bachemap

fixed or not

This commit is contained in:
Orson 2025-03-24 12:07:40 -06:00
parent ac4bb0ec51
commit 3e9c07626c

View File

@ -60,6 +60,13 @@
</select>
</div>
<div style="margin-bottom:15px;">
<label for="fixed{{pin._id}}"><b>¿Está solucionado?</b></label>
<select id="fixed{{pin._id}}" name="fixed" style="width:100%; padding:8px;">
<option value="True" {% if pin.fixed %}selected{% endif %}>Sí, está solucionado</option>
<option value="False" {% if not pin.fixed %}selected{% endif %}>No, sigue pendiente</option>
</select>
</div>
<div style="margin-bottom:15px;">
<label for="description{{pin._id}}"><b>Descripción:</b></label>
<textarea id="description{{pin._id}}" name="description" style="width:100%; padding:8px; height:100px;">{{pin.description}}</textarea>