On Tue, Apr 13, 2010 at 5:50 PM, NicMAN <nicolanoo...@gmail.com> wrote:

> Hi all, i recently tried to open my admin page and it won't let me
> open it keeps saying
>
> Caught an exception while rendering: Tried create_user in module
> applications.views. Error was: 'module' object has no attribute
> 'create_user'
>
> but i don't have a my create_user code anymore, i deleted it because i
> didn't need it, then it is giving out about the base.html page saying
> there is an error in that and i haven't modified the admin base.html
> page at all. here is the error on LINE 30
>
>
You appear to still have a reference to your create_user view in your url
mappings.  This is causing the error reported in the admin template because
that admin template attempts to do a reverse url mapping, for which all
urlpatterns must be valid. You have got one that is not (it refers to the
now non-existent create_user view), so you get an error.

Karen

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to