{% extends "master_ass.html" %} {% block body %}
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
Currently works with Django 1.5 above and Python 2.7.x
INSTALLED_APPS = ( ... 'associations', )
BASE_DIR = os.path.dirname(os.path.dirname(__file__))If the 'BASE_DIR' is defined as some other variable, define BASE_DIR = defined_variable_name
url(r'^associations/', include('associations.urls')),
http://127.0.0.1:8000/associations/and you're done