Releases: piccolo-orm/piccolo_admin
Release list
0.55.0
0.54.0
Improved the behaviour of the referencing tables links on the detail page (see #321 for more info).
0.53.0
Improved the UI for JSON fields (the cursor would sometimes jump to the bottom).
0.52.0
Version pinning Pydantic to v1, as v2 has breaking changes.
We will add support for Pydantic v2 in a future release.
Thanks to @sinisaos for helping with this.
0.51.0
Improved the UI for password inputs (e.g. on the change password page). There's now an option to see what you're typing in. Thanks to @sinisaos for this.
Also, a bug with nullable date fields was fixed.
0.50.0
Improved handling of nullable email fields.
Thanks to @sinisaos for adding this, and @sumitsharansatsangi for reporting the issue.
0.49.0
Custom links can now be added to the sidebar. This allows quick navigation to specific pages in the admin, or to external websites.
For example:
create_admin(
sidebar_links={
"Top Movies": "/admin/#/movies/?__order=-popularity",
},
...
)This is how it looks:
Thanks to @sinisaos for adding this.
0.48.0
- Improved the type annotations for
FormConfig. - Fixed a bug with array fields in custom forms (thanks to @sinisaos for fixing this).
0.47.0
Multiple columns can now be used for sorting the rows in the UI.
Setting the default order for a table is now possible. For example, if we want to order movies by rating:
create_admin(
tables=[
TableConfig(
Movie,
order_by=[
OrderBy(Movie.rating, ascending=False)
]
)
)
)Thanks to @sinisaos and @sumitsharansatsangi for their help with this.
0.46.0
Added Turkish translations (thanks to @omerucel for this).


