this is just a basic port of the tables into django models right now. there's some serious slowness in the state creation that i need to fix before this does anything, but i want to get this in a real database on a real linode before i go too much further, so here it is
16 lines
365 B
Python
16 lines
365 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', 'dr_botzo.views.home', name='home'),
|
|
|
|
url(r'^markov/', include('markov.urls')),
|
|
url(r'^races/', include('races.urls')),
|
|
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
)
|
|
|
|
# vi:tabstop=4:expandtab:autoindent
|