diff options
Diffstat (limited to 'python/tbc_www/urls.py')
-rw-r--r-- | python/tbc_www/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tbc_www/urls.py b/python/tbc_www/urls.py index 193443f..4d50f40 100644 --- a/python/tbc_www/urls.py +++ b/python/tbc_www/urls.py @@ -5,5 +5,6 @@ urlpatterns = patterns('tbc_www.views', url(r'^packages/$', 'categories'), url(r'^categories/(?P<category_id>\d+)/$', 'packages'), url(r'^package/(?P<package_id>\d+)/$', 'ebuilds'), + url(r'^ebuild/(?P<ebuild_id>\d+)/$', 'ebuild'), url(r'^new/$', 'new_main'), ) |