-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
#
import codecs
import csv
from io import BytesIO
import json
import os
-import pytz
import re
from django.conf import settings
from django.core.mail import send_mail
from django.http import HttpResponse
from django.template.loader import render_to_string
-from django.utils import timezone
from django.utils.translation import get_language
from django.conf import settings
from django.utils.safestring import mark_safe
-from django.utils.translation import gettext as _
-
-
-tz = pytz.timezone(settings.TIME_ZONE)
-
-
-def localtime_to_utc(localtime):
- return timezone.utc.normalize(
- tz.localize(localtime)
- )
def utc_for_js(dt):
def send_noreply_mail(subject, message, recipient_list, **kwargs):
send_mail(
'[WolneLektury] ' + subject,
- message + "\n\n-- \n" + _('Message sent automatically. Please do not reply.'),
+ message + "\n\n-- \nWiadomość wysłana automatycznie. Prosimy nie odpowiadać.",
'no-reply@wolnelektury.pl', recipient_list, **kwargs)
class YesNoFilter(admin.SimpleListFilter):
def lookups(self, request, model_admin):
return (
- ('yes', _('Yes')),
- ('no', _('No')),
+ ('yes', 'Tak'),
+ ('no', 'Nie'),
)
def queryset(self, request, queryset):
return queryset.filter(self.q)
elif self.value() == 'no':
return queryset.exclude(self.q)
+
+
+def is_ajax(request):
+ return request.headers.get('x-requested-with') == 'XMLHttpRequest'