{% extends "master_ass.html" %} {% block body %}

Associations Usage

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
{% endblock %}