mirror of
https://github.com/Hopiu/django.git
synced 2026-03-26 10:50:23 +00:00
8 lines
134 B
Python
8 lines
134 B
Python
|
|
|
||
|
|
from django.conf.urls.defaults import *
|
||
|
|
import widgetadmin
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
(r'^', include(widgetadmin.site.urls)),
|
||
|
|
)
|