Anyone know of a tool that can analyze a project and generate a list or
graph of *views* & related information?

I'm maintaining a medium size Django project. For each feature/change, I am
finding myself creating a "map" of the relevant view names/relationships
for quick reference. This includes:

   - URL pattern
   - URL pattern name
   - view class name
   - template file name

Example:

> /training/, course-list, TrainingCourseList,
> training/trainingcourse_list.html
> /training/courses/<slug>/, course-detail, TrainingCourseDetail,
> training/trainingcourse_detail.html
> /training/courses/<slug>/purchase/, course-cart, TrainingCourseCart,
> training/trainingcourse_cart.html
> /training/checkout/, course-checkout, TrainingCourseCheckout,
> training/trainingcourse_checkout.html


I'm new to Django and I like it so far, but identifying references is a bit
of a nuisance. I found manage.py graph_models, but that only processes
models.

I lieu of a tool, anyone have organizational practices they'd like to share?

Thanks,

-- 
Mat Gessel
http://www.asquare.net

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGuKJ6%2BmZVeg7%2BUGdBijeiRhtjshT4bEU1MaDO4yADq41UmEWg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to