mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-07 21:12:02 +00:00
13 lines
314 B
Python
13 lines
314 B
Python
|
# coding=utf-8
|
||
|
from django.conf.urls import include, url
|
||
|
from django.contrib import admin
|
||
|
from django.views.generic import TemplateView
|
||
|
|
||
|
urlpatterns = [
|
||
|
# Examples:
|
||
|
# url(r'^$', 'qduoj.views.home', name='home'),
|
||
|
# url(r'^blog/', include('blog.urls')),
|
||
|
|
||
|
url(r'^admin/', include(admin.site.urls)),
|
||
|
]
|