Costi Mihai

Results 43 comments of Costi Mihai

Hey @steverecio ! Would you mind explaining your solution a bit more in detail? I got to this point where I have the custom callback function, but the API of...

@cinarizasyon are you extending the admin classes with the relevant UnfoldAdmin models?

Hey @aksharahegde, great work with adding it. I've worked a bit to make your code actually work here: https://github.com/mcosti/django-map-widgets Feel free to merge it into your own fork. Using your...

Hey @alanjds . Could you maybe share what you tried and it didn't work? Thanks

I personally haven't, I just used the hack above in my project

This is a paid SDK (and a very expensive one)

My browser on safari ios crashes even loading a 400MB .mov file sadly ```javascript fetchFile(videoFile).then((result) => { ffmpeg.writeFile("source_video.mp4", result) }) ``` This is enough to crash it

I have the same question unfortunately

This is what I use in my project ```python class TabularInlineTypedModel(admin.TabularInline): """Mixin copied typedmodels.admin.TypedModelAdmin""" def get_fields(self, request, obj=None): fields = super().get_fields(request, obj) # we remove the type field from the...

The culprit lives somewhere here ```python if isinstance(field, models.fields.related.RelatedField): # Monkey patching field instance to make do_related_class use created class instead of base_class. # Actually that class doesn't exist yet,...