mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Set up static files correctly
Working authentication
This commit is contained in:
14
RIGS/urls.py
Normal file
14
RIGS/urls.py
Normal 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'),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user