I would suggest doing everything possible so that your product and developer are as identical as possible, however, if this is not possible, you can use separate URLs for the development environment.
, .DEBUG, :
extra_patterns = patterns('',
(r'enroll/$', 'enroll'),
)
if settings.DEBUG:
urlpatterns = patterns('', (r'^', include(extra_patterns)))
else:
urlpatterns = patterns('', (r'^activity/', include(extra_patterns)))