Refactor soc/views/user/profile.py to make use of several of the new views
available in soc/views/simple.py.
Patch by: Todd Larsen
Review by: to-be-reviewed
from django.conf.urls.defaults import *urlpatterns = patterns('', (r'^$', 'examples.views.index'), (r'^hello/', include('examples.hello.urls')),)