Forked from
IGWN Computing and Software / GraceDB / GraceDB Server
1087 commits behind the upstream repository.
-
Tanner Prestegard authored
Small fixes to the main "index" view for alerts. Move the manage_password page for LV-EM observers to the ligoauth app and show a link to it from the navbar to those users.
Tanner Prestegard authoredSmall fixes to the main "index" view for alerts. Move the manage_password page for LV-EM observers to the ligoauth app and show a link to it from the navbar to those users.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
urls.py 1.19 KiB
from django.conf.urls import url
from . import views
app_name = 'alerts'
urlpatterns = [
# Base /options/ URL
url(r'^$', views.index, name="index"),
# Contacts
url(r'^contact/create/', views.CreateContactView.as_view(),
name='create-contact'),
url(r'^contact/(?P<pk>\d+)/edit/$', views.EditContactView.as_view(),
name="edit-contact"),
url(r'^contact/(?P<pk>\d+)/delete/$', views.DeleteContactView.as_view(),
name="delete-contact"),
url(r'^contact/(?P<pk>\d+)/test/$', views.TestContactView.as_view(),
name="test-contact"),
url(r'^contact/(?P<pk>\d+)/request-code/$',
views.RequestVerificationCodeView.as_view(),
name="request-verification-code"),
url(r'^contact/(?P<pk>\d+)/verify/$', views.VerifyContactView.as_view(),
name="verify-contact"),
# Notifications
url(r'^notification/create/$', views.CreateNotificationView.as_view(),
name="create-notification"),
url(r'^notification/(?P<pk>\d+)/edit/$',
views.EditNotificationView.as_view(), name="edit-notification"),
url(r'^notification/(?P<pk>\d+)/delete/$',
views.DeleteNotificationView.as_view(), name="delete-notification"),
]