Skip to content

Releases: piccolo-orm/piccolo_admin

0.34.0

11 Oct 22:07

Choose a tag to compare

Updated the date / datetime / time picker.

0.33.1

14 Sep 20:59

Choose a tag to compare

Fixed an issue with installing piccolo_admin in editable mode with pip.

Thanks to @peterschutt for reporting this issue.

0.33.0

08 Sep 23:23

Choose a tag to compare

Improved the UI for error messages. Thanks to @sinisaos for adding this.

Light mode:

Screenshot 2022-09-08 at 23 34 29

Dark mode:

Screenshot 2022-09-08 at 23 34 22

0.32.0

08 Sep 14:18

Choose a tag to compare

Camelcase column names could break parts of Piccolo Admin. It now works as expected:

class Person(Table):
    # This now works:
    firstName = Varchar()

Even though camelcase is unusual in Python, a user may be using an existing database, so it makes sense to support it. Thanks to @sumitsharansatsangi for reporting this issue.

0.31.2

05 Sep 12:32

Choose a tag to compare

When piccolo_admin is installed, an admin_demo script is made available on the command line, which launches a Piccolo Admin demo.

It wasn't working due to a missing folder, which has now been fixed.

0.31.1

29 Aug 20:37

Choose a tag to compare

Fixed a bug with custom forms - under some situations they would fail to render.

Thanks to @sinisaos for discovering this issue.

See PR 208 for more info.

0.31.0

29 Aug 16:13

Choose a tag to compare

Improved the French translations (thanks to @LeMeteore).

0.30.0

28 Aug 21:05

Choose a tag to compare

Added translations for simplified Chinese characters (courtesy @mnixry).

0.29.1

11 Aug 22:08

Choose a tag to compare

The media endpoints now obey the read_only option of create_admin. Read only mode is used for online demos.

Thanks to @sinisaos for adding this.

0.29.0

06 Aug 18:28

Choose a tag to compare

Added media upload support - to both a local folder, and S3.

Images, videos, PDFs, and audio files can be viewed within the UI.

This is the one of the biggest updates we've ever made, and are excited to share!

media_viewer_image

Thanks to @sinisaos for all of the help.