mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 05:54:07 +01:00
10 lines
223 B
Python
10 lines
223 B
Python
from django.shortcuts import render, redirect
|
|
from django.contrib.auth import logout
|
|
|
|
def home(request):
|
|
return render(request, 'users/home.html')
|
|
|
|
|
|
def logout_view(request):
|
|
logout(request)
|
|
return redirect('/') |