mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 06:50:15 +02:00
13 lines
374 B
Python
13 lines
374 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'timerboard'
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.TimerView.as_view(), name='view'),
|
|
url(r'^add/$', views.AddTimerView.as_view(), name='add'),
|
|
url(r'^remove/(?P<pk>\w+)$', views.RemoveTimerView.as_view(), name='delete'),
|
|
url(r'^edit/(?P<pk>\w+)$', views.EditTimerView.as_view(), name='edit'),
|
|
]
|