aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/srtgui/urls.py')
-rw-r--r--lib/srtgui/urls.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/srtgui/urls.py b/lib/srtgui/urls.py
index 26c484d8..a4947c51 100644
--- a/lib/srtgui/urls.py
+++ b/lib/srtgui/urls.py
@@ -88,10 +88,19 @@ urlpatterns = [
tables.PackageFilterDetailTable.as_view(template_name="package-filter-detail-toastertable.html"),
name='package-filter-detail'),
+ url(r'^publish-list/$',
+ tables.PublishListTable.as_view(template_name="publish-list-toastertable.html"),
+ name='publish-list'),
+ url(r'^publish-cve/$',
+ tables.PublishCveTable.as_view(template_name="publish-cve-toastertable.html"),
+ name='publish-cve'),
+ url(r'^publish-defect/$',
+ tables.PublishDefectTable.as_view(template_name="publish-defect-toastertable.html"),
+ name='publish-defect'),
+
url(r'^select-publish/$',
tables.SelectPublishTable.as_view(template_name="publish-select-toastertable.html"),
name='select-publish'),
-
url(r'^update-published/$',
tables.UpdatePublishedTable.as_view(template_name="published-select-toastertable.html"),
name='update-published'),
@@ -120,6 +129,8 @@ urlpatterns = [
url(r'^xhr_packages/$', views.xhr_packages,
name='xhr_packages'),
+ url(r'^xhr_publish/$', views.xhr_publish,
+ name='xhr_publish'),
url(r'^manage/$', views.management, name='manage'),
url(r'^manage_cpes/$',
@@ -137,6 +148,19 @@ urlpatterns = [
name='sources'),
url(r'^users/$', views.users, name='users'),
+ url(r'^maintenance/$', views.maintenance, name='maintenance'),
+ url(r'^history_cve/$',
+ tables.HistoryCveTable.as_view(template_name="history-cve-toastertable.html"),
+ name='history_cve'),
+ url(r'^history_vulnerability/$',
+ tables.HistoryVulnerabilityTable.as_view(template_name="history-vulnerability-toastertable.html"),
+ name='history_vulnerability'),
+ url(r'^history_investigation/$',
+ tables.HistoryInvestigationTable.as_view(template_name="history-investigation-toastertable.html"),
+ name='history_investigation'),
+ url(r'^history_defect/$',
+ tables.HistoryDefectTable.as_view(template_name="history-defect-toastertable.html"),
+ name='history_defect'),
url(r'^guided_tour/$', views.guided_tour, name='guided_tour'),