backpex icon indicating copy to clipboard operation
backpex copied to clipboard

Phoenix Admin Panel built with PETAL.

Results 52 backpex issues
Sort by recently updated
recently updated
newest added

### Ideas - [ ] `mix backpex.gen.gettext` generates the language file - [ ] `mix backpex.gen.resource` generates a live resource

feature

All pubsub settings could be optional: - `pubsub`: use `:pubsub_server` option of the endpoint? - `topic`: derive from resource name? - `event_prefix`: derive from resource name?

enhancement

This works: ``` https://backpex.live/admin/posts?filters[user_id][]=098f1b60-54d6-40bc-a8f9-986b2c95c1a9 ``` This results in a bad request: ``` https://backpex.live/admin/posts?filters[user_id][]=INVALID ``` This is because we are trying to cast the value to a UUID internally.

bug

Sorting should not be case sensitive. **Possible solutions:** * `fragment("lower(?)")`: Works on text only * citext postgres extension: must be added by the user

enhancement
good-first-issue

You should be able to determine the text of the anchor that is displayed on `index`/`show` via a configuration value. Currently, the URL is used as the anchor text.

feature

Make all resources searchable via a global search in the topbar.

feature

Implement a language switch to demonstrate translation features.

feature
hacktoberfest

"show more" closes the dropdown. It should stay open. https://github.com/naymspace/backpex/assets/133831/c23b845b-0851-49f3-a453-038d86f2d10f This can be reproduced in the post resource (https://demo.backpex.live/admin/posts). This may be related to the placement of the dropdown. It...

bug