In a djano app, in urls.py, I got 2 urls. Both extend 'base.html'. But when I go to the url, one of them doesn't load the .css, .js files etc. Any ideas? Urls.py below:
from django.conf.urls import patterns, url
urlpatterns = patterns('',
(r'^password/reset/$', 'django.contrib.auth.views.password_reset',
{'post_reset_redirect' : '/membership/password/reset/done/'}),
(r'^register/$', 'membership.views.register_user'),
)
Ps. I copied and pasted the "extends 'base.html' etc in order to avoid any typos.
Update I forgot to tell you that when the page loads, in the source code of the 'register' page it seems that 'static/' is missing. Even though in other pages example '/membership/dashboard/' it works properly.