Possible bug with Form Wizard and condition_dict?

2012-10-05 Thread Scott Woodall
I searched the bug tracker and the django users with no results, so is what I'm seeing a bug? I have a form wizard that is using a callable within condition_dict. If I try to access "wizard.steps.current" inside the callable, I get the following error: "maximum recursion depth exceeded in __in

A single file that contains common django imports

2012-07-06 Thread Scott Woodall
Would there be any issues with creating a single file contains common django modules I use, then importing that file into my views, models etc. Example: common_imports.py === from django.conf import settings from django.core.urlresolvers import reverse from django.shortcuts import re