summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/urls.py
diff options
context:
space:
mode:
authorJoey Hagedorn <hagedorn@mcs.anl.gov>2007-06-06 14:50:20 +0000
committerJoey Hagedorn <hagedorn@mcs.anl.gov>2007-06-06 14:50:20 +0000
commit0ad447aeae0fd400dfd849aca41e6edf87cf7ffc (patch)
tree0b1a8e0c7b1a462d30cc2b08778da964df191688 /src/lib/Server/Reports/urls.py
parent49e0397c4b77f20385731bec146b050e8229b7c2 (diff)
downloadbcfg2-0ad447aeae0fd400dfd849aca41e6edf87cf7ffc.tar.gz
bcfg2-0ad447aeae0fd400dfd849aca41e6edf87cf7ffc.tar.bz2
bcfg2-0ad447aeae0fd400dfd849aca41e6edf87cf7ffc.zip
bugfix to updated statistics retention policy
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@3248 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Reports/urls.py')
-rw-r--r--src/lib/Server/Reports/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Server/Reports/urls.py b/src/lib/Server/Reports/urls.py
index 6d5fe8833..9f602cb4d 100644
--- a/src/lib/Server/Reports/urls.py
+++ b/src/lib/Server/Reports/urls.py
@@ -4,7 +4,9 @@ urlpatterns = patterns('',
# Example:
# (r'^Bcfg2.Server.Reports/', include('Bcfg2.Server.Reports.apps.foo.urls.foo')),
(r'^/*$','Bcfg2.Server.Reports.reports.views.index'),
+
(r'^clients/(?P<hostname>\S+)/(?P<pk>\d+)/$', 'Bcfg2.Server.Reports.reports.views.client_detail'),
+ (r'^clients/(?P<hostname>\S+)/manage/$', 'Bcfg2.Server.Reports.reports.views.client_manage'),
(r'^clients/(?P<hostname>\S+)/$', 'Bcfg2.Server.Reports.reports.views.client_detail'),
(r'^clients/(?P<hostname>\S+)$', 'Bcfg2.Server.Reports.reports.views.client_detail'),
#hack because hostnames have periods and we still want to append slash