Skip to content

Commit

Permalink
Merge pull request #2045 from laws-africa/429
Browse files Browse the repository at this point in the history
Add 429.html
  • Loading branch information
actlikewill authored Sep 18, 2024
2 parents 59632dd + 9d12030 commit 62fa6a6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions peachjam/templates/429.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% extends "peachjam/layouts/main.html" %}
{% load i18n %}
{% block title %}
{% trans 'Too many requests (Error 429)' %}
{% endblock %}
{% block page-content %}
<section class="py-5">
<div class="container">
<h1 class="mb-4">{% trans 'Too many requests (Error 429)' %}</h1>
<p>
{% blocktrans trimmed %}
You've made too many requests in a short period. Please try again later.
{% endblocktrans %}
</p>
<ul>
<li>
<a href="{% url 'home_page' %}">{% trans "Go to the homepage." %}</a>
</li>
<li>
<a href="{% url 'search:search' %}">{% trans "Try searching for what you're looking for." %}</a>
</li>
</ul>
</div>
</section>
{% endblock %}

0 comments on commit 62fa6a6

Please sign in to comment.