Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
8 lines
171 B
Python
8 lines
171 B
Python
from django import views
|
|
from django import shortcuts
|
|
|
|
|
|
class HomeView(views.View):
|
|
def get(self, request):
|
|
return shortcuts.render(request, "user/home.html")
|