https://github.com/unplugstudio/mezzanine-announcements
Site-wide announcements for Mezzanine websites
https://github.com/unplugstudio/mezzanine-announcements
Last synced: over 1 year ago
JSON representation
Site-wide announcements for Mezzanine websites
- Host: GitHub
- URL: https://github.com/unplugstudio/mezzanine-announcements
- Owner: unplugstudio
- License: mit
- Created: 2020-04-02T21:27:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T19:38:29.000Z (over 3 years ago)
- Last Synced: 2025-02-23T15:48:09.598Z (over 1 year ago)
- Language: Python
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mezzanine Announcements
[](https://github.com/unplugstudio/mezzanine-announcements/actions)
[](https://pypi.org/project/mezzanine-announcements/)
[](https://pypi.org/project/mezzanine-announcements/)
[](https://semver.org/)
[](https://github.com/psf/black)
A Mezzanine app to create and display site-wide announcements.
## Features
- Schedulable announcements (start and end datetimes)
- Define as many announcement types as you want in settings
- Make announcements optionally dismissable by the user
- An announcement will not bother the user after they have dismissed it
- Optionally make the announcement reappear after a set amount of days
- Add an optional time delay after page load before showing an announcement
## Installation
1. Install via pip: `pip install mezzanine-announcements`
1. Add to `"announcements"` to `INSTALLED_APPS`.
1. Run migrations.
1. Add `"announcements.context_processors.announcements"` to your context processors.
1. Define the list of announcement templates that will be available for your admin users. This is a tuple of two-value tuples defined in `settings.ANNOUNCEMENTS_TEMPLATES` where the first element is the path to the Django template to be used, and the second element is the friendly name displayed in the admin for said template. For example:
```python
ANNOUNCEMENTS_TEMPLATES = (
("announcements/modal.html", "Modal"),
("announcements/top_bar.html", "Top bar"),
)
```
You need to create this templates yourself. An example is provided below.
1. Add some announcements in the new "Announcements" section in the admin.
Then to display the announcements in your templates:
1. Add the cookies and announcement scripts to the templates where you want to use the announcements
```django
```
1. Include the template with all announcements in a `{% nevercache %}` block:
```django
{% nevercache %}
{% include "announcements/announcements.html" %}
{% endnevercache %}
```
## Templates
You can use any markup and styling you want in the announcement templates
defined in `settings.ANNOUNCEMENTS_TEMPLATES`. You could use a Bootstrap modal,
or simple horizontal bar on the top of your page. The only conditions that you
need to keep in mind are the following:
- The template must contain a single element of the class `announcement`.
- The announcement ID, delay, and expiration must be present as data attributes
on the `.announcement` element.
- If the announcement is dismissable, you must include a clickable element with
the class `close-announcement` as a child of `.announcement`.
```django
{% load mezzanine_tags %}
{{ announcement.content|richtext_filters|safe }}
{% if announcement.can_dismiss %}
Close
{% endif %}
```
## Settings
| Name | Default value | Description |
|--------------------------------|---------------|---------------------------------------------------------------------------------------------------------|
| ANNOUNCEMENTS_TEMPLATES | None | List of templates available for announcements. See Templates section above |
| ANNOUNCEMENTS_EXTRA_FIELDS | None | List of additional fields to display in the announcement admin: ["extra_content", "video_link", "form"] |
## Contributing
Review contribution guidelines at [CONTRIBUTING.md].
[CONTRIBUTING.md]: CONTRIBUTING.md