8 lines
116 B
Python
8 lines
116 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
import views
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^xview/$', views.xview),
|
||
|
)
|