Skip to content

Commit

Permalink
fix more template variable errors
Browse files Browse the repository at this point in the history
  • Loading branch information
skandrigi committed Nov 24, 2024
1 parent 69eb78c commit 69c5cbb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hiss/templates/400.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1>400</h1>
<h2>Bad Request</h2>
<h4>Whoops! The request you made isn't valid.</h4>
<p>If you think this is a mistake, email us at <a href="mailto: {{ organizer_email }}">{{ organizer_email }}</a></p>
<p>If you think this is a mistake, email us at <a href="mailto: {{ ORGANIZER_EMAIL }}">{{ ORGANIZER_EMAIL }}</a></p>
<a class="btn btn-lg btn-block btn-login" href="{% url 'status' %}">
Take Me Back
</a>
Expand Down
2 changes: 1 addition & 1 deletion hiss/templates/403.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1>403</h1>
<h2>Page Forbidden</h2>
<h4>Whoops! It looks like you do not have access to this page.</h4>
<p>If you think this is a mistake, email us at <a href="mailto: {{ organizer_email }}">{{ organizer_email }}</a></p>
<p>If you think this is a mistake, email us at <a href="mailto: {{ ORGANIZER_EMAIL }}">{{ ORGANIZER_EMAIL }}</a></p>
<a class="btn btn-lg btn-block btn-login" href="{% url 'status' %}">
Take Me Back
</a>
Expand Down
2 changes: 1 addition & 1 deletion hiss/templates/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1>404</h1>
<h2>Page Not Found</h2>
<h4>Whoops! It looks like the page you are looking for doesn't exist.</h4>
<p>If you think this is a mistake, email us at <a href="mailto: {{ organizer_email }}">{{ organizer_email }}</a></p>
<p>If you think this is a mistake, email us at <a href="mailto: {{ ORGANIZER_EMAIL }}">{{ ORGANIZER_EMAIL }}</a></p>
<a class="btn btn-lg btn-block btn-login" href="{% url 'status' %}">
Take Me Back
</a>
Expand Down
2 changes: 1 addition & 1 deletion hiss/templates/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h1>500</h1>
<h2>Internal Server Error</h2>
<h4>Whoops! There's an issue on our end. We're working to fix it!</h4>
<p>If you think this is a mistake, email us at <a href="mailto: {{ organizer_email }}">{{ organizer_email }}</a></p>
<p>If you think this is a mistake, email us at <a href="mailto: {{ ORGANIZER_EMAIL }}">{{ ORGANIZER_EMAIL }}</a></p>
<a class="btn btn-lg btn-block btn-login" href="{% url 'status' %}">
Take Me Back
</a>
Expand Down

0 comments on commit 69c5cbb

Please sign in to comment.