3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-16 21:55:31 +00:00
coope/coopeV3/views.py

32 lines
1.1 KiB
Python
Raw Normal View History

2019-01-19 22:39:48 +00:00
from django.shortcuts import redirect, render
from django.urls import reverse
2019-01-19 22:39:48 +00:00
from preferences.models import GeneralPreferences
from gestion.models import Keg
def home(request):
2019-02-28 12:18:41 +00:00
"""
Redirect the user either to :func:`~gestion.views.manage` view (if connected and staff) or :func:`~coopeV3.views.homepage` view (if connected and not staff) or :func:`~users.views.loginView` view (if not connected).
"""
2018-10-05 22:03:02 +00:00
if request.user.is_authenticated:
if(request.user.has_perm('gestion.can_manage')):
return redirect(reverse('gestion:manage'))
else:
2019-01-19 22:39:48 +00:00
return redirect(reverse('homepage'))
else:
return redirect(reverse('users:login'))
2019-01-19 22:39:48 +00:00
def homepage(request):
2019-02-28 12:18:41 +00:00
"""
View which displays the :attr:`~preferences.models.GeneralPreferences.home_text` and active :class:`Kegs <gestion.models.Keg>`.
"""
2019-01-19 22:39:48 +00:00
gp, _ = GeneralPreferences.objects.get_or_create(pk=1)
kegs = Keg.objects.filter(is_active=True)
return render(request, "home.html", {"home_text": gp.home_text, "kegs": kegs})
2019-01-20 08:28:11 +00:00
def coope_runner(request):
2019-02-28 12:18:41 +00:00
"""
Just an easter egg
"""
2019-01-20 08:28:11 +00:00
return render(request, "coope-runner.html")