A Django app for managing an organisation's board members page.
Project description
A pluggable Django app for managing board members of an organisation. Board members have titles, mini-biographies, and photos.
Installation is simple:
pip install django-board
Getting started
Add the following to your INSTALLED_APPS:
sorl.thumbnail (if not already present);
board.
Sync database changes, using:
python manage.py syncdb
django-board ships with no views, templates or URLs. To include a list of board members in a template, use the template tag board_members:
{% load board_tags %} {% board_members as members %} {% if members %} <ul> {% for member in members %} <li>{{ member.name }}</li> {% endfor %} </ul> {% endif %}
Running the tests
You can run the test suite using:
python manage.py test board
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-board-0.2.1.tar.gz
(3.8 kB
view details)
File details
Details for the file django-board-0.2.1.tar.gz
.
File metadata
- Download URL: django-board-0.2.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e22d0fec95ae277c23597baa35d02baa98d09822ab28ed1a791b882ad018f4e6 |
|
MD5 | e5e6408aef36a43289786fd70ba9a8ae |
|
BLAKE2b-256 | e33b62b3d1b1a1639ed379673efbcd428af752db8e8ea3d84cd166047393b5da |