Costi Mihai
Costi Mihai
**Is your feature request related to a problem? Please describe.** It's not a problem with the package, more of a request for help. **Describe the solution you'd like** I am...
HI! I've just read the issue here: [https://github.com/craigds/django-typed-models/issues/61](https://github.com/craigds/django-typed-models/issues/61 ) And it seems I am running into the same kind of problem. I would like to achieve the following structure. ```python...
``` File "/Users/mcosti/dev/django-typed-models/env/bin/activate/lib/python3.9/site-packages/django/apps/registry.py", line 433, in do_pending_operations function(model) File "/Users/mcosti/dev/django-typed-models/env/bin/activate/lib/python3.9/site-packages/django/apps/registry.py", line 411, in apply_next_model self.lazy_model_operation(next_function, *more_models) File "/Users/mcosti/dev/django-typed-models/env/bin/activate/lib/python3.9/site-packages/django/apps/registry.py", line 397, in lazy_model_operation function() File "/Users/mcosti/dev/django-typed-models/env/bin/activate/lib/python3.9/site-packages/django/db/models/fields/related.py", line 373, in resolve_related_class field.do_related_class(related,...
### Expected behaviour A user should be able to login using Google One tap ### Actual behaviour Only the code flow is supported Has anyone managed to write a custom...
Hey, thanks for this nice package! In our code we use this pattern: ```python from some_package.urls import some_other_router main_router = DefaultRouter() main_router.registry.extend(some_other_router.registry) urlpatterns = [ re_path(r"api/v1/", include(router.urls)), ] ``` The...
As the title says, simply doing this: ```python file = open(sys.argv[1], mode="rb") image = pyvips.Image.new_from_buffer(file.read(), options="", access="sequential", autorotate=True) image.write_to_file("applied_layer.jpg", Q=100) ``` Results in a photo being double the size. 1.8MB...
As the title says, the video player cannot properly load HDR colors. The video looks ok on export, but not when editing it
Hey! Awesome library, thank you for your work. Did anyone figure out a way for the timeline to start at negative values? My use case is syncing an audio offset...
### Issue Summary ### Steps to Reproduce ```python class AuthorPage(Page): author = models.ForeignKey("authors.Author", on_delete=models.PROTECT) content_panels = Page.content_panels + [ FieldPanel("author"), InlinePanel("image_gallery_sections", label="Image gallery sections"), ] class ImageGallerySection(Orderable, ClusterableModel): """Image gallery...