Implement the feature matrix

This commit is contained in:
Magnus Hagander
2010-01-11 22:55:00 +01:00
parent 4e9c4ef7fc
commit cad9eddd92
8 changed files with 170 additions and 0 deletions

View File

@ -26,6 +26,8 @@ urlpatterns = patterns('',
(r'^about/news/(\d+)(-.*)?/$', 'news.views.item'),
(r'^about/eventarchive/$', 'events.views.archive'),
(r'^about/event/(\d+)(-.*)?/$', 'events.views.item'),
(r'^about/featurematrix/$', 'featurematrix.views.root'),
(r'^about/featurematrix/detail/(\d+)/$', 'featurematrix.views.detail'),
(r'^about/quotesarchive/$', 'quotes.views.allquotes'),
(r'^ftp/(.*/)?$', 'downloads.views.ftpbrowser'),