2017-02-14 22:26:16 +01:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
|
|
|
from . import views as whoisdb_views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2017-02-23 22:28:06 +01:00
|
|
|
url(r'^$', whoisdb_views.dbDashboard, name='dashboard'),
|
2017-02-28 19:44:15 +01:00
|
|
|
|
|
|
|
url(r'^mnt/create/$', whoisdb_views.MaintainerCreate.as_view(), name='mnt-create'),
|
|
|
|
url(r'^mnt/show/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.MaintainerDetail.as_view(), name='mnt-detail'),
|
|
|
|
url(r'^mnt/edit/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.MaintainerEdit.as_view(), name='mnt-edit'),
|
|
|
|
url(r'^mnt/delete/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.MaintainerDelete.as_view(), name='mnt-delete'),
|
|
|
|
|
|
|
|
url(r'^contact/create/$', whoisdb_views.ContactCreate.as_view(), name='contact-create'),
|
|
|
|
url(r'^contact/show/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.ContactDetail.as_view(), name='contact-detail'),
|
|
|
|
url(r'^contact/edit/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.ContactEdit.as_view(), name='contact-edit'),
|
|
|
|
url(r'^contact/delete/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.ContactDelete.as_view(), name='contact-delete'),
|
|
|
|
|
|
|
|
url(r'^inetnum/create/$', whoisdb_views.InetNumCreate.as_view(), name='inetnum-create'),
|
2017-03-01 03:21:03 +01:00
|
|
|
url(r'^inetnum/show/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.InetNumDetail.as_view(), name='inetnum-detail'),
|
|
|
|
url(r'^inetnum/edit/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.InetNumEdit.as_view(), name='inetnum-edit'),
|
|
|
|
url(r'^inetnum/delete/(?P<handle>[A-Z0-9-]+)/$', whoisdb_views.InetNumDelete.as_view(), name='inetnum-delete'),
|
2017-02-14 22:26:16 +01:00
|
|
|
]
|