9 lines
171 B
Python
9 lines
171 B
Python
|
from django.shortcuts import render
|
||
|
from django.views.generic import TemplateView
|
||
|
|
||
|
|
||
|
class HomeView(TemplateView):
|
||
|
"""Home page"""
|
||
|
|
||
|
template_name = "phd/home.html"
|