Rastopapola
Rastopapola
@eddyizm That sounds more like you should take a look on the [Form and field validation article](https://docs.djangoproject.com/en/3.2/ref/forms/validation/) of Django itself. For my usage, I subclassed the provided ModalForms in this...
The harvesting pytest checks gave me a nice headache. There are 23 tests - all from the harvest test suite - which do not run properly. Since I knew from...
Hey guys, thanks for your replies! Since I moved on a while after opening this issue, I do not have the same setup right now to check again, sorry. But...
Does your template include something like the following? ``` ... {{ form }} {{ form.media }} ... ``` You have to render the form first, then rerender using the `.media`...
@PiJ82 @TheLastProject @Jan200101 Hey all, I happily detected that 8.31 worked back in December 2022. Naive as I was, I simply re enabled automatic updates again on the play store...
@FinalAngel I'm running into the same issue, working with Django 3.1. In my case the issue could be reproduced by adding the `django_filters` package into my project. Due to simplicity...
@FinalAngel I found a way to reproduce this: Add a new path into your app's `urls.py` just like `path('app', app_new_route, name='app-new-route'),` where the method `app_new_route` from your views.py is not...
@FinalAngel No problem, but - on a second thought - I'm not sure whether this is a good solution, simply to try-catch this error. Since I stumbled on this one...
@FinalAngel I just forked your project and implemented the Singleton pattern. Tests are running fine and when I include my local version of simple-sso, I'm now seeing the correct `NameError`...
Pull Request #52 has been created