/projects now handled by static views.

As a last step, we remove /members, which is now fully handled by Apache
static config, to be /projects for use the static page handler.
This commit is contained in:
Bradley M. Kuhn 2016-10-24 13:56:37 -07:00
parent 75846d7f35
commit f40a1209a9

View file

@ -55,7 +55,7 @@ urlpatterns = patterns('',
(r'^donate', 'conservancy.static.views.index'),
(r'^copyleft-compliance', 'conservancy.static.views.index',
{'fundraiser_sought' : 'vmware-match-0'}),
(r'^members', 'conservancy.static.views.index'),
(r'^projects', 'conservancy.static.views.index'),
(r'^npoacct', 'conservancy.static.views.index',
{'fundraiser_sought' : 'npoacct'}),
(r'^overview', 'conservancy.static.views.index'),