I want to make a static page which will be shown to the user only if he/she clicks on a link provided in one of my models. I can do this by making a Python page alone and callin
With the class-based views in newer Django versions, one can use this in urls.py:
from django.views.generic import TemplateView url(r'^about', TemplateView.as_view(template_name='path/to/about_us.html'), name='about'),