Pulse-Mind
Pulse-Mind
Update V2 with bootstrap 4.5.x, bug corrected on horizontal filters, upgrade django version and more
In this pull request I've done a lot of improvements : upgrade to bootstrap 4.5.x (with badges) upgrade to django 2.2.x upgrade node dependencies upgrade gulp script close #768 close...
At this time after login with demo user I get an error 500 : https://v2.djangosuit.com/admin/login/?next=/admin/
The arrow on select is not displayed This is the css provided by suit.css:1186 ``` .custom-select, fieldset select:not([multiple="multiple"]) { display: inline-block; max-width: 100%; height: calc(2.5rem - 2px); padding: 0.375rem 1.75rem...
Hello, I did not know how to contact you so I created an issue here, sorry!. Thank you for sharing your work. I have a question about your dashboard. Did...
## Description Celery does not work perfectly under windows. But It works when I add in the command line : --pool=solo So it could be nice to add in the...
Hello, I am using ubuntu 20.04 django-rq is managed with supervisor When I reboot the server I get this error: ``` Could not connect to Redis instance: Connection closed by...
Migration to Django4.0 : TypeError: __init__() got an unexpected keyword argument 'providing_args'
After modifying some source gettext_lazy, force_str... I still have an error whe I run with Django4 ``` avatar_updated = django.dispatch.Signal(providing_args=["user", "avatar"]) TypeError: __init__() got an unexpected keyword argument 'providing_args' ```
In parser.py, line 125 ```content = message.get_payload(decode=True)``` is removing some special characters like ç or é or... It works fine with ```message.get_payload(decode=False)``` like this : ```def decode_content(message): content = message.get_payload(decode=False)...
Hi, I am doing a postgresql backup on linux and I get a binary file. To restore it we need to use pg_restore. I'd like to have a RAW SQL...
When running with Django 4.2, there is a log : ``` /Users/pmind/.virtualenvs/myproject/lib/python3.10/site-packages/pwa/views.py:8: ResourceWarning: unclosed file response = HttpResponse(open(app_settings.PWA_SERVICE_WORKER_PATH).read(), content_type='application/javascript') ``` The source code is : ``` def service_worker(request): response =...