first commit

This commit is contained in:
2025-11-01 18:10:39 -03:00
parent 6e7348359f
commit 63cf724aaf
220 changed files with 4040 additions and 62 deletions

View File

@@ -0,0 +1,17 @@
<div class=""> Time </div>
<div class="form-group">
<label>
<input type="time" name="time" id="id_time"
{# value="{{ form.time.field.queryset }}"#}
class="form-control"
>
</label>
</div> <br>
<script>
const timeInput = document.getElementById("id_time");
const now = new Date();
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
timeInput.value = `${hours}:${minutes}`;
</script>