summaryrefslogtreecommitdiff
path: root/linaro_metrics/urls.py
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2015-07-17 18:51:12 -0500
committerAndy Doan <andy.doan+gerrit@linaro.org>2015-10-16 16:02:41 +0000
commit777d98cead01e096ba27615950e29beade907783 (patch)
tree8e34cb84e5efd7c87008e324120ffba2c10558b4 /linaro_metrics/urls.py
parent6d95fa1cb784406d6088c6bd30fc33ddffe8b778 (diff)
linaro-metrics: Add simple view for a team
Unfortunately the monkey-patching is required so that we don't have to maintain our own copy of patch-list.html which is 300 lines of complex rendering. Change-Id: Ifb1d6c478d9f9acab8be3bb565a1c6df056e1417
Diffstat (limited to 'linaro_metrics/urls.py')
-rw-r--r--linaro_metrics/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/linaro_metrics/urls.py b/linaro_metrics/urls.py
index e6d18a1..f71c98e 100644
--- a/linaro_metrics/urls.py
+++ b/linaro_metrics/urls.py
@@ -12,4 +12,5 @@ urlpatterns = patterns(
# Now provide our own urls.
(r'^team/$', 'linaro_metrics.views.team_overview'),
+ (r'^team/(?P<team>[^/]+)/$', 'linaro_metrics.views.team_view'),
)