-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-260-use-toast-notifications
- Loading branch information
Showing
5 changed files
with
70 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
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,21 @@ | ||
{% extends "base.html" %} | ||
|
||
{% load static %} | ||
|
||
{% block content %} | ||
<!-- Begin Page Content --> | ||
<div class="container-fluid"> | ||
|
||
<!-- 404 Error Text --> | ||
<div class="text-center"> | ||
<div class="error mx-auto" data-text="404">404</div> | ||
<p class="lead text-gray-800 mb-5">Page Not Found</p> | ||
<p class="text-gray-500 mb-0">It looks like you found a transient page...</p> | ||
<p class="text-gray-500 mb-0">Please report this error if it is unexpected.</p> | ||
<a href="{% url 'index' %}">← Back to Home</a> | ||
</div> | ||
|
||
</div> | ||
<!-- /.container-fluid --> | ||
|
||
{% endblock content %} |
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,20 @@ | ||
{% extends "base.html" %} | ||
|
||
{% load static %} | ||
|
||
{% block content %} | ||
<!-- Begin Page Content --> | ||
<div class="container-fluid"> | ||
|
||
<!-- 404 Error Text --> | ||
<div class="text-center"> | ||
<div class="error mx-auto" data-text="500">500</div> | ||
<p class="lead text-gray-800 mb-5">Internal Server Error</p> | ||
<p class="text-gray-500 mb-0">Please report this error if it is unexpected.</p> | ||
<a href="{% url 'index' %}">← Back to Home</a> | ||
</div> | ||
|
||
</div> | ||
<!-- /.container-fluid --> | ||
|
||
{% endblock content %} |
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