David
David
# Bug report **What is the current behavior?** I edited page on netlify cms **If the current behavior is a bug, please provide the steps to reproduce.** Edit a page...
* What would you like to be able to do? Can you provide some examples? Let's say I have a `Program has_one Product as: :item` where Product handles polymorphic association...
* What would you like to be able to do? Can you provide some examples? Is it possible at the moment to handle different levels of administration ? Say I...
At the moment associated models in a polymorphic association cannot be scoped, by default ```:all``` is called in `candidate_resources_for(klass)`. This can produce pretty long lists in the select field. -...
* What were you trying to do? Translations for a polymorphic field item. here's an example. Item can be a program or a session and both are translated in the...
* What would you like to be able to do? Can you provide some examples? I have table GroupItems and table Groups. Groups has a jsonb column type called lms_data....
* What were you trying to do? * Trying to figure out the correct way to handle translations for select fields * What did you end up with (logs, or,...
Accorging to the [doc](https://github.com/thoughtbot/administrate/blob/main/docs/customizing_dashboards.md). `Field::Polymorphic` seems to support an order parameter, which is useful to display the associated models in a specific order. However, if you have a polymorphic field...
* What would you like to be able to do? Can you provide some examples? At the moment if you want to filter out a specific action in the dashboards...
* What were you trying to do? create a select form an enum field. In my model Program : `enum publication_status: { 'publié' => 'published', 'a venir' => 'upcoming', 'brouillon'...