mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
fc7f1ddb7f
This reverts commit 2febf5b246
.
8 lines
172 B
Python
8 lines
172 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.search, name='search'),
|
|
url(r'^avance/$', views.searchp, name='searchp'),
|
|
]
|