adi
adi
I don't rememberer now exactly, but it was a mistake of a initial value cached by python itself, I guess:)
Which browser? version + os.
Can anyone do tests to confirm that this fixes the problem?
OK, I will do checking on my side too.
Oh, I understood you wrong. There is a newer version `4.0.7` (https://github.com/neutronX/django-markdownx/releases/tag/v4.0.7) which already has some fixes on that. Can you confirm that `4.0.7` is already working for you?
os/browser?
That is really strange. I have tested this on Ubuntu/Firefox, osx/Safari, osx/Firefox and everything looks fine. Can you verify that web browser's cache was cleared?
Finally figured out what is going on here. When you want to register model field into admin, you need to use `MarkdownxModelAdmin` base class. I think you forgot about adding...
Ahhh, spelling error :) Of course `django-modeltranslation` Here is the problematic code (where sorting only works on default language): ```python class PlacesListView(ListView): template_name = 'products/places.html' queryset = Place.objects.all() context_object_name =...
Traceback: ```bash Traceback (most recent call last): File "/opt/venvs/[...]/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner response = get_response(request) File "/opt/venvs/[...]/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/opt/venvs/[...]/lib/python3.8/site-packages/django/views/generic/base.py", line...