IdHub/idhub/views_user.py
Cayo Puigdefabregas 7253ed80a7 refactory
2023-10-09 11:44:26 +02:00

13 lines
286 B
Python

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')