Option One: Reloading Wrapper I now that there is caching going on, but I am still not sure why. I did find a work around, though I would still like for someone to explain what is going on underneath.
The work around if from: http://groups.google.com/group/django-users/browse_thread/thread/f44eefb21b7e675c# It basically creates a wrapper/facade for each view and reloads the views each time the facade is called. If you have read template chapter form the Django book, then this example will look familiar. It is the form letter example. I have updated it so that the view itself is not called, but a wrapper which reload the views. file: urls.py from django.conf.urls.defaults import * from myproject.views import * from myproject.views_dev import * urlpatterns = patterns('', (r'^developer1/Development/ThankYou/$', form_letter_dev), ) file: views_dev.py import os.path import views def form_letter_dev(request): reload(views) return views.form_letter(request) file:views.py from django.shortcuts import render_to_response import datetime def form_letter(request): warranty = True return render_to_response('form_letter.html', {'person_name': 'John Smith', 'company': 'Super Lawn Mower', 'ship_date': datetime.datetime.now(), 'ordered_warranty': warranty, 'item_list': ['Blade', 'Hat', 'Saw', 'Gas Can'] } ) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---