mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
5 lines
164 B
Python
5 lines
164 B
Python
from django.shortcuts import render
|
|
from django.views.generic import TemplateView # FormView,
|
|
|
|
class ProfileView(TemplateView):
|
|
template_name = 'profile.html'
|