Enable the ProjectSurvey and GradingProjectSurvey views in the core.
Also add menu items to the program menu for easy access to these options.
Reviewed by: Lennard de Rijk
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^$', 'examples.views.index'),
(r'^hello/', include('examples.hello.urls')),
)