-
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.
Display login screen on unrecoverable error
- Loading branch information
Showing
5 changed files
with
89 additions
and
10 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
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,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Test title</title> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
|
||
<!-- Le styles --> | ||
{% block styles %} | ||
|
||
{% endblock %} | ||
|
||
<!-- spot to insert stuff for google maps --> | ||
{% block additional-headers %}{% endblock %} | ||
|
||
|
||
</head> | ||
|
||
{% block body %} | ||
|
||
<body> | ||
<div class="container"> | ||
{% block message %} | ||
{% if message or messages or message_list %} | ||
{% include "message.html" %} | ||
{% endif %} | ||
{% endblock %} | ||
{% block content %} | ||
{% if template %}{% include template %}{% endif %} | ||
{{ content|safe }} | ||
{% endblock %} | ||
</div> | ||
|
||
|
||
{% block javascript %} | ||
|
||
<!-- Le javascript --> | ||
|
||
{% endblock %} | ||
|
||
{% block additional-javascript %}{% endblock %} | ||
|
||
|
||
</body> | ||
{% endblock %} | ||
</html> | ||
|
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