Pluggable advertisement and promotion managing application
Add "addle" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'addle', ]
Ensure that you have django.contrib.auth added as an application as well.
Include the addle URLconf in your project urls.py like this:
url(r'^addle/', include('addle.urls')),
Run
python manage.py migrate
to create the addle models.Start the development server.
Visit http://127.0.0.1:8000/addle/ to see the app.
The standalone application is basically ready to use as one would normally run a Django app, but the pluggable application has a few more things to note.
- Addle hooks into the Django permissions system. (...)
- Addle is designed, loosely, for a site using Bootstrap, so elements are classed as such, but this is designed to not be a hard requirement. To that end, some styles are defined within the templates.
- Source, issues, and further information:
- GitHub
- Author
- The OpenFurry Contributors