generated from MinBZK/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
58 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PROJECT VERSION\n" | ||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" | ||
"POT-Creation-Date: 2024-09-18 11:47+0200\n" | ||
"POT-Creation-Date: 2024-09-24 16:54+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -53,6 +53,14 @@ msgstr "" | |
msgid "Details" | ||
msgstr "" | ||
|
||
#: amt/site/templates/errors/_HTTPException404.html.j2:1 | ||
msgid "Page not found" | ||
msgstr "" | ||
|
||
#: amt/site/templates/errors/_HTTPException404.html.j2:3 | ||
msgid "The page or file you requested is not found. Please check the URL." | ||
msgstr "" | ||
|
||
#: amt/site/templates/errors/_RequestValidation.html.j2:1 | ||
msgid "Request Validation Error" | ||
msgstr "" | ||
|
@@ -61,7 +69,7 @@ msgstr "" | |
msgid "An error occurred" | ||
msgstr "" | ||
|
||
#: amt/site/templates/layouts/base.html.j2:1 | ||
#: amt/site/templates/layouts/base.html.j2:11 | ||
msgid "Algorithmic Management Toolkit (AMT)" | ||
msgstr "" | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
{% extends 'layouts/base.html.j2' %} | ||
|
||
{% block content %} | ||
{% include 'errors/_HTTPException.html.j2' %} | ||
<div class="rvo-max-width-layout rvo-max-width-layout--md rvo-max-width-layout-inline-padding--none margin-bottom-large"> | ||
|
||
{% if status_code == 404 %} | ||
{% include 'errors/_HTTPException404.html.j2' %} | ||
{% else %} | ||
{% include 'errors/_HTTPException.html.j2' %} | ||
{% endif %} | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<h1 class="utrecht-heading-1">{% trans %}Page not found{% endtrans %}</h1> | ||
<p class="rvo-text"> | ||
{% trans %}The page or file you requested is not found. Please check the URL.{% endtrans %} | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters