Badger is a family of Django apps intended to help introduce badges into your project, to track and award achievements by your users. This can be used to help encourage certain behaviors, recognize skills, or just generally celebrate members of your community.
For more about the thinking behind this project, check out this essay: Why does Mozilla need a Badger?
The django-badger
package is the core Badger app. It offers (or plans to
offer) the following:
- Basic badges, managed by the site owner in code and via Django admin.
- Badge awards, triggered in response to signal-based events with code
collected in per-app
badges.py
modules. - Meta-badges, for which an award is automatically issued when a complete set of prerequisite badge awards have been collected.
- Progress tracking, for which an award is issued when a user metric reaches 100% of some goal, or in response to some other custom logic.
- Activity streams of badge awards.
- TBD, see badg.us for an example site setup
pip install git://github.com/lmorchard/django-badger.git#egg=django-badger
- TBD, see badg.us for an example site setup
- TBD, see
badger/tests/badger_example/badges.py
for an example.
There are two sets of templates in the templates folder. The templates
found in badger_playdoh
are intended for use with Playdoh sites, while
those found in badger_vanilla
are meant for plain Django sites.
You'll need to make a copy of one of these folders into a directory named
templates/badger
at the top level of your project. Then, you can customize
the templates as necessary for your site.
- TBD, see
badger/tests/badger_example/badges.py
for an example.
- TBD, see
badger/tests/badger_example/badges.py
for an example.
- TBD, see badg.us for an example site setup
Here are other apps in the Badger family, either in progress or proposed:
- django-badger-multiplayer
- Badges for and by everyone. Augments
django-badger
with features to make badge creation, nomination, and awarding a multiplayer game.
If you want to federate or share badges, you should check out the Mozilla Open Badges project.