add date range to range page

This commit is contained in:
2025-01-31 22:34:09 -05:00
parent 839e1d7124
commit f869da8a80
32 changed files with 377 additions and 100 deletions

View File

@ -0,0 +1,12 @@
<div
class="flex items-center mx-4 my-2 space-x-1"
data-end-date={@end_date}
data-start-date={@start_date}
id={@id}
phx-hook="DateRange"
phx-update="ignore"
>
<input class="text-center w-31 input input-primary" name={"#{@name}_start"} />
<span>—</span>
<input class="text-center w-31 input input-primary" name={"#{@name}_end"} />
</div>