Christian Wiegand

Results 16 comments of Christian Wiegand

Simply copying the unminified version over the minified also works fine and doesn't need code changes. When a release with a fix is available manage.py collectstatic will switch back to...

And now it breaks Dango 4.0 compatibility, since smart_text was removed. Would be great to see this merged and released.

Oh, stupid me, you are completely right. Had a look in previous projects and recognised, i had done so. Thanks

Sorry, I have to reopen this, although it maybe a minor issue. Deleting works fine, but the warning still appears: ``` DeleteViewCustomDeleteWarning: DeleteView uses FormMixin to handle POST requests. As...

Seems to be intended behaviour: https://docs.djangoproject.com/en/4.0/releases/4.0/#generic-views and that means that in the DeleteMessageMixin the content of the delete method should be moved to the form_valid method. I will try if...

Simply moving the content of delete to form_valid is running with django3.2 and 4.0 but breaks the tests for 3.2 und lower. Any hint to keep this compatible?

Found that simply moving the logic in DeleteMessageMixin from delete to post is fully compatible with django 3.2 and django 4 and doesn't break any tests. Will send a pull...

@Justinspryce Can you please describe what exactly you've tested? I just reviewed the pull request with Django 4.1 and got no warning.

Seems not to be a problem of this package. The stacktrace doesn't show any javascript file of this package and there is neither a variable "d" nor "notify" in this...

Hey, django-bootstrap4 doesn't provide special widgets, that are not part of bootstrap. But there are some packages that provide date- and time-pickers. Have a look at https://github.com/monim67/django-bootstrap-datepicker-plus. There is also...