Learning django & python.
Just set up a new site after doing the tutorial. Now for arguments sake say I want to add a bunch of About us, FAQ basic html pages with ve
Currently the best way to do this is using TemplateView from generic class-based views:
from django.views.generic.base import TemplateView url(r'^$', TemplateView.as_view(template_name='index.html'), name='home'),