Metadata-Version: 1.1
Name: django-associations
Version: 0.1
Summary: A simple Django app to show url associations between installed apps.
Home-page: https://github.com/DarkSector/django-associations
Author: Pronoy Chopra
Author-email: contact@pronoy.in
License: MIT License
Description: =====
        Associations
        =====
        
        Associations is a simple Django app to show associations between urls and templates of an app.
        For each app a list of views, view names, view types and urls are shown
        
        Requirements
        ------------
        
        Currently works with Django 1.6 and Python 2.7.x
        
        
        Quick start
        -----------
        
        1. Add "associations" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'associations',
            )
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^associations/', include('associations.urls')),
        
        3. Start the development server and visit http://127.0.0.1:8000/associations/ and you're done
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
