Alex Sichkar
Alex Sichkar
I have a list with about 1000 objects and sort them by attribute that returns a tuple of some data. Sorting by that attribute takes about 100ms. If I sort...
``` class MyTable(tables.Table): name = tables.Column() class Meta: model = MyModel fields = ['name'] row_attrs = {'data-id': lambda obj: obj.id} ``` This is not working anymore and exception is not...
First of all, thank you for this promising project. Is it required to use `` as a component root in the template? I'm trying to use `` and get an...
Wouldn't that way the `.po` files in the locale volume stay the same as they were at the volume creation time even if they changed later? Imagine, after the volume...
 Seems like attached file has incorrect palette or something. Exception raised here: https://github.com/respondcreate/django-versatileimagefield/blob/master/versatileimagefield/versatileimagefield.py#L142 ``` In [62]: palette = im.getpalette() In [63]: im.putpalette(palette) --------------------------------------------------------------------------- TypeError Traceback (most recent call last)...
Is there is a way to do something like: ``` example.image.crop['400x'] ``` or ``` example.image.crop['x400'] ``` so resulting image would have exact/maximum width/height like in sorl-thumbnail?
Thank you for the project, @jodal I have encountered some issues with barcodes not always being encoded correctly. Specifically, when an element string with a fixed length ends with a...
Hi there! Thanks for a very useful project. I believe that `instance.pk` should be preserved in the `pre_save` signal handler before passing to a `transaction.on_commit()` callback. There are cases, such...
Useful package, thanks for this. But there is way to for instance use it to generate email attachment. I understand that I can use plain pdfkit. Maybe it should be...
ModelChoiceFilter and ModelMultipleChoiceFilter don't accept empty_label argument like ChoiceFilter and MultipleChoiceFilter do. I work around this problem by overriding form filed empty label in `__init__` method like `self.form.fields['filed_name'].empty_label = 'Custom...