Move all the properties from Person model to Role model. Update all the comments and docs according to the changes. Remove Person model.
Patch by: Pawel Solyga
from django.conf.urls.defaults import *urlpatterns = patterns('', (r'^$', 'examples.views.index'), (r'^hello/', include('examples.hello.urls')),)