IdHub/idhub/views_user.py

13 lines
286 B
Python
Raw Normal View History

2023-10-09 09:44:26 +00:00
import logging
from django.utils.translation import gettext_lazy as _
from django.urls import reverse_lazy
from django.contrib import messages
from .mixins import UserView
class UserDashboardView(UserView):
template_name = "idhub/user_dashboard.html"
title = _('Dashboard')