ppython
ppython
I'm having a problem for having the admin tabs initialized properly, be it simple tabs or inline tabs. I'm using a third party library Django-summernote to replace the textarea with...
This patch provide an optional alternative to the current core.py/provider_factory method by setting an extra variable in the settings. You could customize where the PAYMENTS_VARIANTS settings should be (DB instead...
Just added import in README examples for faster "hands on" this package
Maybe a noob problem, but I got an empty list when doing: ``` class ExampleAdmin(NestedModelAdmin, SpecificAdmin1, SpecificAdmin2): def get_inline_instances(self, request, obj=None): inlines_inst = super( ExampleAdmin, self).get_inline_instances(request, obj) ``` Instead of...
The use of [the InlineModelAdmin.classes attr](https://docs.djangoproject.com/en/1.11/ref/contrib/admin/#django.contrib.admin.InlineModelAdmin.classes) was missing in your inline template rewriting. With the following code using this `classes` inline attr, which is needed for my uses cases, I...
The get_readonly_fields of a nested inline does not have the proper obj passed: Consider the following configuration: ``` class SecondLevelInline(NestedStackedInline): model = SecondLevelModel def get_readonly_fields(self, request, obj=None): # obj is...
The select list is displayed correctly on two lines, with correct width when first fetching items:  Though, when you select an item,...
On each key up, set the new value is correct. Allows: - copy/paste save value - enter a value without the need to press 'enter' - fix https://github.com/laktek/really-simple-color-picker/issues/24
Didn't filter out color with length>6 ex.: color = '#C0C0C05' would pass as valid.