Brian S. Stephan
e5b9f1634a
it was futzing up some /admin/ login stuff, and I hadn't actually used the three views using it in years, so probably better to just yeet it (technical term) into the sun. Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
22 lines
722 B
Python
22 lines
722 B
Python
"""General/baselite/site-wide URLs."""
|
|
from django.conf.urls import include
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
urlpatterns = [
|
|
path('', TemplateView.as_view(template_name='index.html'), name='index'),
|
|
|
|
path('countdown/', include('countdown.urls')),
|
|
path('dice/', include('dice.urls')),
|
|
path('dispatch/', include('dispatch.urls')),
|
|
path('itemsets/', include('facts.urls')),
|
|
path('karma/', include('karma.urls')),
|
|
path('markov/', include('markov.urls')),
|
|
path('pi/', include('pi.urls')),
|
|
path('races/', include('races.urls')),
|
|
path('weather/', include('weather.urls')),
|
|
|
|
path('admin/', admin.site.urls),
|
|
]
|