6 lines
126 B
Python
6 lines
126 B
Python
|
from django.views.generic.base import TemplateView
|
||
|
|
||
|
|
||
|
class Profile(TemplateView):
|
||
|
template_name = "profiles/profile.html"
|