django-messages icon indicating copy to clipboard operation
django-messages copied to clipboard

A Django application handling private messages between users.

Results 28 django-messages issues
Sort by recently updated
recently updated
newest added

removed python_2_unicode_compatible requirement so works with django 3.

Django 3 has dropped support for Python 2 and therefore removed [Python 2 compatability API](https://docs.djangoproject.com/en/3.0/releases/3.0/). So now import errors are produced. ` ImportError: cannot import name 'python_2_unicode_compatible' from 'django.utils.encoding'`

If we tried to send a message to one user who's nick has space (for example 'Sarah Connor') we just got a 404 or 504 error. Now I've appended a...

hello. I just installed django-messages to my project. all the URLs work as listed in the urls.py of django-messages. but I'm having an issue when accessing the compose page. it...

from django.utils.encoding import python_2_unicode_compatible changed to from six import python_2_unicode_compatible include('django_messages.urls') changed to path('', include('django_messages.urls'))

Hi guys, Thanks for this app 👍 that really nice. I cloned it and I got an error when I send a new message (compose views). It works for the...

By default, message list is not paginated, but now one can enable pagination by setting ``DJANGO_MESSAGES_PAGE_LENGTH`` to a positive integer. Pagination is disabled if this setting variable is not defined...

The solution is, according the documents of Django and based on my test, in file `admin.py`, after line 104, you have to add such line: ```python obj.id = None ```...

Thank you for this very useful application. I use it on my site. But my admin faced with a problem when he had to send messages to 50 users. So,...

Please refer to the answer by Flimm: https://stackoverflow.com/questions/52039654/django-typeerror-render-got-an-unexpected-keyword-argument-renderer