djbase

A base template to bootstrap common Django projects.
git clone https://s.sonu.ch/~srfsh/nelci.git
Log | Files | Refs | README | LICENSE

views.py (195B)


      1 from django.shortcuts import render
      2 
      3 
      4 def home(r):
      5 	return render(r, "page/home.html")
      6 
      7 def about(r):
      8 	return render(r, "page/about.html")
      9 
     10 def contact(r):
     11 	return render(r, "page/contact.html")