Child: [a4d8c3] (diff)

Download this file

urls.py    9 lines (5 with data), 180 Bytes

1
2
3
4
5
6
7
from django.conf.urls import patterns, url
from entity import views
urlpatterns = patterns('',
url(r'^entity_ui/(?P<entity_id>\d+)/$', views.entity_ui, name='entity_ui'),
)