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

Started adding a view for individual reports

This commit is contained in:
Jeremy Stretch
2017-09-27 17:39:22 -04:00
parent f4c87b3739
commit 2fbb39bf6f
6 changed files with 68 additions and 19 deletions

View File

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