2019-01-27 21:20:09 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from .views import AggregationSourceListView, AggregationSourceCreateView, AggregationSourceUpdateView, \
|
|
|
|
AggregationSourceDeleteView
|
|
|
|
|
2019-02-04 09:15:53 +00:00
|
|
|
app_name = 'aggregator'
|
2019-01-27 21:20:09 +00:00
|
|
|
urlpatterns = [
|
|
|
|
path('', AggregationSourceListView.as_view(), name='index'),
|
|
|
|
path('<int:pk>/', AggregationSourceUpdateView.as_view(), name='edit'),
|
|
|
|
path('new/', AggregationSourceCreateView.as_view(), name='new'),
|
|
|
|
path('delete/<int:pk>/', AggregationSourceDeleteView.as_view(), name='delete'),
|
|
|
|
]
|
|
|
|
|