Metadata-Version: 1.0
Name: django-bylaws
Version: 1.0.2
Summary: Manages bylaws for a website built on Django.
Home-page: http://github.com/powellc/django-bylaws
Author: Colin Powell
Author-email: colin@onecardinal.com
License: BSD
Download-URL: http://github.com/powellc/django-bylaws/downloads
Description: django-bylaws
        ================
        
        This project gives you a pluggable application for adding bylaws to a
        project. It takes advantage of django_simple_history to provide
        rudimentary version control of your bylaw documents and can also handle
        whether users must sign them before doing various deeds on your website.
        
        Installation
        -------------
        
        1. Place 'bylaws' in your installed apps.
        2. Add something like the following to your urls:
        
                url(r'^bylaws/', include('bylaws.urls')),
        
        3. Sync your DB:
        
                python manage.py syncdb
        
        Overview
        ----------
        
        Bylaws are simple documents that allow you to:
        
        1. use markup to structure a bylaws document
        2. keep track of any changes anyone makes
        3. gives you easy access to the latest adopted bylaw document
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
