summaryrefslogtreecommitdiffstats
path: root/reports/brpt/urls.py
diff options
context:
space:
mode:
authorJoey Hagedorn <hagedorn@mcs.anl.gov>2006-07-19 04:52:06 +0000
committerJoey Hagedorn <hagedorn@mcs.anl.gov>2006-07-19 04:52:06 +0000
commitd3ffa20a399233283fba2d02147a761fdee0212d (patch)
tree89080586b876f8ae6ac132ead46b6fe5a6217716 /reports/brpt/urls.py
parentc95a959007e440c1a580e79993e9c75f20fff03a (diff)
downloadbcfg2-d3ffa20a399233283fba2d02147a761fdee0212d.tar.gz
bcfg2-d3ffa20a399233283fba2d02147a761fdee0212d.tar.bz2
bcfg2-d3ffa20a399233283fba2d02147a761fdee0212d.zip
New Reports: Lots of changes to faciliate Reasons info display. Clicking on Bad or Modified configuration item name now brings up a page that describes the problem.
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1970 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'reports/brpt/urls.py')
-rw-r--r--reports/brpt/urls.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/reports/brpt/urls.py b/reports/brpt/urls.py
index 9d015723b..44050a774 100644
--- a/reports/brpt/urls.py
+++ b/reports/brpt/urls.py
@@ -9,13 +9,16 @@ urlpatterns = patterns('',
(r'^clients/(?P<hostname>\S+)$', 'brpt.reports.views.client_detail'),
#hack because hostnames have periods and we still want to append slash
(r'^clients/$','brpt.reports.views.client_index'),
-
+ (r'^displays/sys-view/(?P<timestamp>(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])@([01][0-9]|2[0-3]):([0-5][0-9]|60):([0-5][0-9]|60))/$','brpt.reports.views.display_sys_view'),
(r'^displays/sys-view/$','brpt.reports.views.display_sys_view'),
+ (r'^displays/summary/(?P<timestamp>(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])@([01][0-9]|2[0-3]):([0-5][0-9]|60):([0-5][0-9]|60))/$','brpt.reports.views.display_summary'),
(r'^displays/summary/$','brpt.reports.views.display_summary'),
(r'^displays/timing/(?P<timestamp>(19|20)\d\d-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])@([01][0-9]|2[0-3]):([0-5][0-9]|60):([0-5][0-9]|60))/$','brpt.reports.views.display_timing'),
- (r'^displays/timing/$','brpt.reports.views.display_timing'),
+ (r'^displays/timing/$','brpt.reports.views.display_timing'),
(r'^displays/$','brpt.reports.views.display_index'),
+ (r'^elements/modified/(?P<eyedee>\d+)/$','brpt.reports.views.config_item_modified'),
+ (r'^elements/bad/(?P<eyedee>\d+)/$','brpt.reports.views.config_item_bad'),
# Uncomment this for admin:
#(r'^admin/', include('django.contrib.admin.urls')),