diff options
author | Dan McGee <dan@archlinux.org> | 2011-10-05 15:45:44 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-10-05 15:45:44 -0500 |
commit | d5063bd1d2cae79df7ce6e826c7413fed61ff9db (patch) | |
tree | c2e80d2cdcd1407ee5e65a2d3dd5f5d58a78d63b /visualize/urls.py | |
parent | e157f942e96ba827aebf08dd253c866fec88beaa (diff) |
Add package visualizations page
Why the hell not? Have fun clicking all the pretty buttons.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'visualize/urls.py')
-rw-r--r-- | visualize/urls.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/visualize/urls.py b/visualize/urls.py new file mode 100644 index 00000000..57ee0626 --- /dev/null +++ b/visualize/urls.py @@ -0,0 +1,9 @@ +from django.conf.urls.defaults import patterns + +urlpatterns = patterns('visualize.views', + (r'^$', 'index', {}, 'visualize-index'), + (r'^by_arch/$', 'by_arch', {}, 'visualize-byarch'), + (r'^by_repo/$', 'by_repo', {}, 'visualize-byrepo'), +) + +# vim: set ts=4 sw=4 et: |