Offline addon for django.contrib.messages
Project description
django-user-messages adds offline messaging support to Django’s messaging framework. It achieves this by allowing to save messages in the database. The user_messages.api.get_messages utility and the user_messages.context_processors.messages context processor transparently concatenate Django’s messages and our own messages in a single list, therefore existing code works without any changes and without causing database writes. django-user-messages’ functions have to be used explicitly. I consider this a feature, not a bug.
Installation
Install django-user-messages using pip into your virtualenv.
Add user_messages to INSTALLED_APPS and run migrate.
Replace the default messages context processor with user_messages.context_processors.messages. The context processor provides both django.contrib.messages’ and django-user-messages’ messages.
Use user_messages.api as you would use django.contrib.messages except that you pass the user model or ID as first parameter, not the current request.
Usage
Pretty much the same as Django’s messaging framework:
from user_messages import api api.info(user, 'Hey there') api.warning(user, 'Stop this') api.error(user, 'Not nice!') # Passing the ID is also possible; the user instance does not # have to be instantiated at all: api.success(user.id, 'Yay!')
django-user-messages’ messages supports two additional features not available in Django’s messages framework:
Messages can be delivered more than once by passing deliver_once=False. These messages have to be acknowledged explicitly. django-user-messages does not contain any code to do this.
It is possible to attach additional data by passing a dictionary as meta:
api.debug(user, 'Oww', meta={ 'url': 'http://example.com', })
For convenience, our messages have the same tags and level_tag properties as Django’s messages. Meta properties are also accessible in templates:
{% if messages %} <ul class="messages"> {% for message in messages %} <li class="{{ message.tags }}".> {% if message.meta.url %}<a href="{{ message.meta.url }}">{% endif %} {{ message }} {% if message.meta.url %}</a>{% endif %} </li> {% endfor %} </ul> {% endif %}
django-user-messages’ messages are also evaluated lazily.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-user-messages-0.5.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8634e9f29e5fca1c68a7725ddeea5e866db114d1f4e7888b56d898aecfa1b909 |
|
MD5 | 33d60e63a0354d5c56a39b0154491607 |
|
BLAKE2b-256 | 63064cfe77650fbd11f3fae7a91d128cdf28010e918d11ea7509c4266b6d18b4 |
Hashes for django_user_messages-0.5.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1315be89daf8aa3a8d96b71bf6874c9cd70a37a18f6d4e73e40d776ba370d00 |
|
MD5 | 866579c1ab84d41238211fcbeec2d975 |
|
BLAKE2b-256 | 4280ccaa6900267cd4aebe5bafe32b0f2768b244889a8cf5007ef18510c51c6a |