mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 02:16:26 +00:00
9 lines
192 B
Python
9 lines
192 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'search'
|
|
urlpatterns = [
|
|
url(r'^$', views.search, name='search'),
|
|
url(r'^avance/$', views.searchp, name='searchp'),
|
|
]
|