Consider that I include namespaced reusable application:
urlpatterns = patterns(\'\',
# ella urls
url(\'^ella/\', include(\'ella.core.urls\', namespace=\
URL Namespaces can be specified in two ways.
Firstly, you can provide the application and instance namespace as arguments to include() when you construct your URL patterns. For example,:
(r'^help/', include('apps.help.urls', namespace='foo', app_name='bar')),
This is right from http://docs.djangoproject.com/en/dev/topics/http/urls/#defining-url-namespaces.
Try changing include('ella.core.urls', namespace="ella")
to include('ella.core.urls', namespace="ella", app_name="ella")
. I'm not 100% this will work, but its worth a shot.