[Answer]-Admin pages on django 1.4 doesn't work

1👍

I got it :))

The problem is in importing/including other urls in the main url.
Tried to comment this line url(r'^contact/', include('form_handle_app.urls')),
and things went well.

I found out that uform_handle_app.urls, has a bad line that doesn’t refer to anything (url(r'^$', 'contact'),) , and at the same time, django doesn’t complain unless it’s being touched by the browser; when adding admin pages, all the urls that you have should be fine, even if you will not use them.
`

Leave a comment