Skip to content
Snippets Groups Projects
urls.py 236 B
Newer Older
  • Learn to ignore specific revisions
  • Todd Dembrey's avatar
    Todd Dembrey committed
    from django.urls import path
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    
    from .esi import views as esi_views
    from .search import views as search_views
    
    urlpatterns = [
    
    Todd Dembrey's avatar
    Todd Dembrey committed
        path('esi/<slug>/', esi_views.esi, name='esi'),
        path('search/', search_views.search, name='search'),
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    ]