From 9d120305ea22610504b464eba1c2f7ffdec381e7 Mon Sep 17 00:00:00 2001 From: actlikewill Date: Tue, 17 Sep 2024 09:24:23 +0300 Subject: [PATCH] adds 429.html --- peachjam/templates/429.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 peachjam/templates/429.html diff --git a/peachjam/templates/429.html b/peachjam/templates/429.html new file mode 100644 index 000000000..de0d27f5c --- /dev/null +++ b/peachjam/templates/429.html @@ -0,0 +1,25 @@ +{% extends "peachjam/layouts/main.html" %} +{% load i18n %} +{% block title %} + {% trans 'Too many requests (Error 429)' %} +{% endblock %} +{% block page-content %} +
+
+

{% trans 'Too many requests (Error 429)' %}

+

+ {% blocktrans trimmed %} + You've made too many requests in a short period. Please try again later. + {% endblocktrans %} +

+ +
+
+{% endblock %}