f79cc8a353
Instead of having everything in the root directory, split them in seperate directories (appliances, scripts, & configs). This makes things a little tidier. Also added a now Makefile target, appliance-list, that prints a list of the available appliances. The split directory change made this easier.
9 lines
241 B
Python
9 lines
241 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
(r'^accounts/login/$', 'django.contrib.auth.views.login'),
|
|
url('^library/', include('tp_library.urls')),
|
|
url('', include('teamplayer.urls')),
|
|
)
|