-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
from django.shortcuts import render, get_object_or_404
from django.http import HttpResponse
from django.views.decorators.cache import never_cache
+from wolnelektury.utils import is_ajax
@never_cache
file_url = None
waiting = get_object_or_404(WaitedFile, path=path)
- if request.is_ajax():
+ if is_ajax(request):
return HttpResponse(file_url)
else:
return render(request, "waiter/wait.html", {