Add badges to members in juntagrico.
This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico)
- Badges can be added in the data administration
- Members have a new menu "Badges" where they can see their assigned badges
- The admin can configure for each badge if members can assign them themselves
- The Admin can see a list of all members having badges which he can filter and send emails to matching members
Install juntagrico-badge via pip
$ pip install juntagrico-badges
or add it in your projects requirements.txt
In settings.py add 'juntagrico_badges',, above 'juntagrico''.
INSTALLED_APPS = [
...
'juntagrico_badges',
'juntagrico',
]In your urls.py you also need to extend the pattern:
urlpatterns = [
...
path('', include('juntagrico_badges.urls')),
]