Tadas Dailyda
Tadas Dailyda
It would be nice if django-admin-sortable2 checked for `order_with_respect_to`. If it's enabled, repositioning queries could only update a subset of queryset (all records with the same value in `order_with_respect_to` field...
Django model instance ```delete``` method supports ```using``` kwarg since at least Django 1.7. treebeard's ```Node.delete``` should support it as well, but then ```delete``` method on node querysets might have to...
I have been using django-parler for a while now and it seems to be fine with one level query sets of translated objects (no related objects which are also translated)....
So let's say I have a model like this: ``` python class Post(TranslatableModel): translations = TranslatedFields( title=models.CharField(max_length=255, blank=True, default='') ) def get_title(self): return self.safe_translation_getter('title') ``` If translation is missing and...
I see that django-taggit is the defacto standard for tagging in django and there's nothing else maintained in this category. But it kind-of doesn't fit the whole picture where everything...
This solves #233, I think 🙂 As I found out, `IOSetup.setup` needs to get context of the first request to be able to construct `Trace[IO]` resource. And then, all custom...
There's a problem when using tracing in combo with resources that are cached (in init or setup part of execution), which is even included in one of the examples: https://github.com/typelevel/feral/blob/main/examples/src/main/scala/feral/examples/KinesisLambda.scala#L52-L53....
I have some additional binaries which I need to include into the app bundle, but one of them has dynamically linked libs and verification always fails with "code object is...
So after fixing #4276 attrs['page'] is no longer available in menu nodes. My question is whether there is a way for a menu modifier (or any other code dealing with...
- defaults to no timeout - make `keepAlive` override-able as well