2021-09-28 13:10:22 +00:00
|
|
|
from django.shortcuts import render, redirect, get_object_or_404
|
|
|
|
|
|
|
|
from . import models
|
|
|
|
|
2021-10-10 15:06:43 +00:00
|
|
|
def fallback(request):
|
|
|
|
context = {}
|
|
|
|
return render(request, 'fallback.html', context)
|
|
|
|
|
2021-09-28 13:10:22 +00:00
|
|
|
def index(request):
|
|
|
|
context = {}
|
|
|
|
return render(request, 'index.html', context)
|
|
|
|
|
2021-10-11 12:26:51 +00:00
|
|
|
def page(request, slug=''):
|
2021-09-28 13:10:22 +00:00
|
|
|
context = {}
|
2021-10-11 12:55:45 +00:00
|
|
|
if request.user.is_staff:
|
|
|
|
page = models.Page.objects.filter(slug=slug).first()
|
|
|
|
else:
|
|
|
|
page = models.Page.objects.filter(slug=slug, public=True).first()
|
2021-10-11 12:26:51 +00:00
|
|
|
if page:
|
|
|
|
context['page'] = page
|
|
|
|
return render(request, 'page.html', context)
|
|
|
|
else:
|
|
|
|
return render(request, 'fallback.html', context)
|
|
|
|
|
|
|
|
def about(request):
|
2021-10-21 15:24:26 +00:00
|
|
|
context = {}
|
|
|
|
return render(request, 'about.html', context)
|
2021-09-28 13:10:22 +00:00
|
|
|
|
2021-10-10 15:06:43 +00:00
|
|
|
def texts(request):
|
2021-09-28 13:10:22 +00:00
|
|
|
context = {}
|
2021-10-11 12:55:45 +00:00
|
|
|
context['texts'] = models.Text.objects.filter(public=True).order_by('position', 'created')
|
2021-10-10 15:06:43 +00:00
|
|
|
return render(request, 'texts.html', context)
|
2021-09-28 13:10:22 +00:00
|
|
|
|
2021-10-10 15:06:43 +00:00
|
|
|
def text(request, slug):
|
2021-09-28 13:10:22 +00:00
|
|
|
context = {}
|
2021-10-11 12:55:45 +00:00
|
|
|
if request.user.is_staff:
|
|
|
|
context['text'] = get_object_or_404(models.Text, slug=slug)
|
|
|
|
else:
|
|
|
|
context['text'] = get_object_or_404(models.Text, slug=slug, public=True)
|
2021-10-10 15:06:43 +00:00
|
|
|
return render(request, 'text.html', context)
|