Parent: [320778] (diff)

Child: [314be8] (diff)

Download this file

urls.py    8 lines (5 with data), 185 Bytes

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