Jules Robichaud-Gagnon

Results 55 comments of Jules Robichaud-Gagnon

I never used `unfold` but I used `rangefilter`. I was checking the issues to see if it would be compatible with my project, and your issue stood out to me....

Oh, I understand the point. Maybe you could rename your issue for something like: > "django-admin-rangefilter" compatibility

out of curiosity, what is not expected?

According to the [documentation](https://github.com/dherault/serverless-offline) > reloadHandler > > Reloads handler with each request. `--reloadHandler` does not activate a reload when a file changes, it reloads regardless after each request. This...

I found this workaround: ```python class TestMyMigration(MigratorTestCase): databases = ("default", "my_db",) database_name = "my_db" # ... def setUp(self) -> None: sql.drop_models_tables(self.database_name) sql.flush_django_migrations_table(self.database_name) with connections["my_db"].cursor() as cursor: cursor.execute("DROP COLLATION french") super().setUp()...

I could give it a try. I have trouble finding meaningful names. For the TestCase it could work: - setUpBeforeApply - tearDownAfterApply For the migrator: - run_before_apply (its not clear...

Is anything needed for the migrator at all considering the user call it himself directly? He could just add the just before the function. I believe only the TestCase needs...

What if you use the reverse relationship? `parent.publications.add(instance)`

I managed to have `django-admin-rangefilter` working with `grappelli` in my project. I hope it can help anyone wanting to finish the job. I created an app `rangefilter_grappelli` to store all...