1
Fork 0
yamdl-playground/yamdl_playground/core/views.py

24 lines
775 B
Python
Raw Normal View History

from .models import Page
from django.http import HttpResponse
2023-12-08 14:53:17 +00:00
from django.db import connections
2024-03-31 14:20:03 +01:00
from django.shortcuts import get_object_or_404, render
2024-03-31 14:01:58 +01:00
from django.template import Template, Context
2023-12-12 18:11:44 +00:00
def search(request):
2023-12-08 14:53:17 +00:00
with connections["default"].cursor() as cursor:
cursor.execute("SELECT rowid FROM search_index WHERE search_index = %s;", ["content"])
row = cursor.fetchone()
pages = Page.objects.filter(id__in=row)
return HttpResponse(str(pages), content_type="text/plain")
2023-12-12 18:11:44 +00:00
2023-12-12 18:14:34 +00:00
def content(request, slug):
page = get_object_or_404(Page, slug=slug)
2023-12-12 18:11:44 +00:00
2024-03-31 14:01:58 +01:00
template = Template(page.content)
2024-03-31 14:20:03 +01:00
return render(request, "content.html", {
"page": page,
"content": template.render(Context({"request": request, "page": page}))
})