Matthias Kestenholz
Matthias Kestenholz
Thanks, this works really well!
This is an excellent idea! - The implementation would probably belong into the `PPOIAndPreviewMixin` and in `ppoi.js`, even when not using the PPOI widget. (We could also rename the JS...
Please submit a pull request :) I have only ever used this package with the Google OAuth2 endpoint and have written custom code based on requests-oauthlib to interact with Keycloak....
`f` should be an instance of an `ImageFieldFile` which – in turn – should always have a `.name` attribute. I'm not sure what is going on here. I do not...
That's sad. The django-imagefield widget itself is quite hacky but the activation itself through `.formfield(...)` isn't https://github.com/matthiask/django-imagefield/blob/26f126f3a91b94b2e23dbc6b5da86fdb81ed0bee/imagefield/fields.py#L355-L363
Hi @bkfox That might be a good idea. OTOH I consider django-content-editor to be more stable and conservative. The regions code is still relatively new, at least compared to the...
What would you use parler or translated fields for? Translating page titles etc? How would you fill in the content for different languages? Or add translated fields to all plugins?...
Btw, https://www.dwheeler.com/sloccount/ really isn't everything, but for django-translated-fields it reports 77 lines and for django-parler 2009 lines of code (both excluding tests) So in terms of complexity there's a big...
Hmm maybe there is an easy way to replicate this interface using django-content-editor's tabbed fieldsets? Completely untested: ```python @admin.register(models.Stuff) class StuffAdmin(admin.ModelAdmin): class Media: css = {"all": ["content_editor/content_editor.css"]}, js = [...
I was just thinking again about this (sorry for the long wait) I don't remember which project, but I experimented with a multilingual page tree once. The page model didn't...