Implement OTP and show received callbacks

This commit is contained in:
2022-10-15 21:51:47 +01:00
parent 8369f44bd4
commit 361b7b96f0
17 changed files with 396 additions and 155 deletions

View File

@@ -19,10 +19,10 @@ logger = logging.getLogger(__name__)
# Create your views here
class Home(View):
class Home(LoginRequiredMixin, View):
template_name = "index.html"
async def get(self, request):
def get(self, request):
return render(request, self.template_name)