piccolo-orm / piccolo_admin

A powerful web admin for your database.
https://piccolo-orm.com/ecosystem/
MIT License
299 stars 35 forks source link

Improve the array widgets for time / date / timestamp #393

Closed dantownsend closed 1 month ago

dantownsend commented 1 month ago

If you have a table like this:

class MyTable(Table):
    times = Array(Time)

Piccolo Admin's array widget uses text inputs. It would be nice to use a time input for the above example.