mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-05 18:34:52 +00:00

Sync up to the same version we have on the commitfest app, which will also be required for eventual django 1.11 support.
9 lines
158 B
Python
9 lines
158 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<lookup_name>[-\w]+)/$', views.get_lookup, name="selectable-lookup"),
|
|
]
|