1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Added a run view for reports

This commit is contained in:
Jeremy Stretch
2017-09-28 12:51:10 -04:00
parent b65e9fe0f5
commit 2b33e78fd3
3 changed files with 44 additions and 5 deletions

View File

@ -15,5 +15,6 @@ urlpatterns = [
# Reports
url(r'^reports/$', views.ReportListView.as_view(), name='report_list'),
url(r'^reports/(?P<name>[^/]+\.[^/]+)/$', views.ReportView.as_view(), name='report'),
url(r'^reports/(?P<name>[^/]+\.[^/]+)/run/$', views.ReportRunView.as_view(), name='report_run'),
]