Source code for tests.views
""" We needed to do some testing on the htmx search and it seemed useful to add a test url for it """
from django.contrib.auth.decorators import login_required
from django.shortcuts import render
[docs]
@login_required()
def htmx_search(request):
return render(request, "tests/search/htmx_search.html")
[docs]
@login_required()
def button_test(request):
"""Test hyperscript button reveal problem"""
return render(request, "tests/button_test.html")