Set up static files correctly

Working authentication
This commit is contained in:
tjp03u
2014-10-23 23:42:53 +01:00
parent c2beb24487
commit 33b454684d
141 changed files with 39734 additions and 2 deletions

14
RIGS/urls.py Normal file
View File

@@ -0,0 +1,14 @@
from django.conf.urls import patterns, include, url
from django.contrib import admin
from django.contrib.staticfiles.urls import static
from django.conf import settings
import RIGS
urlpatterns = patterns('',
# Examples:
# url(r'^$', 'PyRIGS.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url('^user/login/$', 'RIGS.views.login', name='login'),
)