mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-19 02:50:16 -04:00
10 lines
199 B
Python
10 lines
199 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
|
|
def about (request):
|
|
return render (request, 'news/about.html')
|
|
|
|
def home (request):
|
|
return render (request, 'news/home.html')
|