mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 09:41:14 +02:00
8 lines
183 B
Python
8 lines
183 B
Python
from django.shortcuts import redirect
|
|
from django.views.generic import View
|
|
|
|
|
|
class IndexView(View):
|
|
def get(self, request, *args, **kwargs):
|
|
return redirect("portfolio")
|