diff options
author | Magnus Hagander | 2016-01-20 21:23:15 +0000 |
---|---|---|
committer | Magnus Hagander | 2016-01-20 21:23:15 +0000 |
commit | 29b26ed793696a11a04444985837df1224e7dab7 (patch) | |
tree | d683267db7739abb425c8923fb3efee69644251c /pgcommitfest/urls.py | |
parent | 699ff05ae4392eb4e44a46c5202189a48ba48681 (diff) |
Add report showing author/reviewer stats
Grouped by each contriubtor, show which patches this person is the
author and reviewer of, to compare how many of each people have.
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r-- | pgcommitfest/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py index 11153a1..952d8fe 100644 --- a/pgcommitfest/urls.py +++ b/pgcommitfest/urls.py @@ -21,6 +21,7 @@ urlpatterns = patterns('', url(r'^(\d+)/(\d+)/(comment|review)/', 'pgcommitfest.commitfest.views.comment'), url(r'^(\d+)/send_email/$', 'pgcommitfest.commitfest.views.send_email'), url(r'^(\d+)/\d+/send_email/$', 'pgcommitfest.commitfest.views.send_email'), + url(r'^(\d+)/reports/authorstats/$', 'pgcommitfest.commitfest.reports.authorstats'), url(r'^search/$', 'pgcommitfest.commitfest.views.global_search'), url(r'^ajax/(\w+)/$', 'pgcommitfest.commitfest.ajax.main'), |