6 lines
166 B
Python
6 lines
166 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns(
|
||
|
"regluit.marc.views",
|
||
|
url(r"^marc/concatenate/$", "marc_records", name="marc_concatenate"),
|
||
|
)
|