6 lines
162 B
Python
6 lines
162 B
Python
|
from django.conf.urls.defaults import url, patterns
|
||
|
|
||
|
|
||
|
urlpatterns = patterns("symposion.boxes.views",
|
||
|
url(r"^([-\w]+)/edit/$", "box_edit", name="box_edit"),
|
||
|
)
|