from django.shortcuts import render, redirect
from django.views import View
from django.contrib import messages
# Create your views here.

class DashboardViews(View):

    def get(self, request):
        return render(request, "dashboard.html")
