Ammon Q
Ammon Q
I think you could just change the `formatTime` setting in your settings to `formatTime: 'g:i A'`. That worked for me.
I noticed this problem with Google's reCAPTCHA as well.
This is my function in my `views.py` file. ```python def sidebar_directory_page(request, template='sidebarlandingpage/sidebar_directory_page.html'): if request.method == 'POST': form = HcaptchaForm(request.POST) if form.is_valid(): return SidebarDirectoryPage.objects.first().serve(request) else: return render(request, 'sidebarlandingpage/captcha_page.html', {'captcha_form': form}) else:...
And this is my template file `captcha_page.html`: ```html {% extends "base.html" %} {% load static wagtailcore_tags wagtailimages_tags wagtailembeds_tags %} {% block main %} {% image page.get_parent.specific.hero_image fill-900x400 as img %}...
And my form in `forms.py` as well: ```python from django.forms import forms from hcaptcha.fields import hCaptchaField class HcaptchaForm(forms.Form): hcapthca = hCaptchaField(required=True) ```