Skip to main content

Wrapper around django.contrib.messages adding persistence.

Project description

# Persistent Messages-like Framework for Django

Persistent, dismissible, targeted, messages framework for Django apps

## STATUS

Alpha - pls do not use. This README is six years old.

## Background

Django messages are great for one-off notifications to users, but not
for persistent notification banners. From the [official
documentation](https://docs.djangoproject.com/en/1.11/ref/contrib/messages/)
on the Django messages framework:

> Quite commonly in web applications, you need to display a one-time
> notification message to the user after processing a form or some other
> types of user input. [...] The messages framework allows you to
> temporarily store messages in one request and retrieve them for
> display in a subsequent request (usually the next one).

These one-time messages are usually dynamic, created within a view
function, to alert the user to something that has just happened. This
project is designed to extend the pattern to support configurable and
persistent messages to users. The canonical use case for this is the EU
Cookie warning. This appears to everyone (logged in or not) until the
user explicitly dismiss it. It is not related to any specific action
that the user has taken (beyond visiting the site for the first time),
and it persists across all requests.

## Compatibility

Python 3.12+ and Django 5.2-6.0

## Requirements

- Messages can be managed via the admin site
- The message can contain HTML (specifically href links)
- The message can be categorised (e.g. INFO | WARNING)
- The message can be targeted to appear to the following groups:
- All users (inc. anonymous)
- Authenticated users only
- Specific user groups only
- The message can be marked as dismissable
- The message can be enabled / disabled
- The message can expire (do not show after {{datetime}})
- Track message dismissals

## Use cases

- As the marketing team I would like to notify users of an event / activity
- As the tech team I would like to alert users to platform maintenance
- As the EU I would like to annoy people with a message about cookies

## Technical implementation

1. Print out all messages targeted at a user

```python
# live == enabled, not expired, not-dismissed, targeted at user
for m in PersistentMessage.objects.for_user(user).active():
print(m.message)
```

2. Display messages in a template using template context

```html
<body>
{% for m in persistent_messages %}
<div class="{{m.extra_tags}}">{{ m.message }}</div>
{% endfor %} ...
</body>
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_persistent_messages-0.5.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_persistent_messages-0.5-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file django_persistent_messages-0.5.tar.gz.

File metadata

File hashes

Hashes for django_persistent_messages-0.5.tar.gz
Algorithm Hash digest
SHA256 186bb9af8ccf5d82e34d4897d0500ac99b542cb20ab32e719f1aa6627d5a9543
MD5 31d58c928bdc882823a257a5a5a89303
BLAKE2b-256 e2288a8b6968046da31cd2d9af7099ecfa71037976561db153c7011dbee97f52

See more details on using hashes here.

File details

Details for the file django_persistent_messages-0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for django_persistent_messages-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6788442629d702548d96b859f6398073a8ee6a55a91f1e3c749270c821f59e4c
MD5 087b5bb82336329bdbdc1af414460420
BLAKE2b-256 9efcc757627c121208106fc3fcf6b9f575431923ee5d6867a7a5d8e124ec33f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page