aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main
diff options
context:
space:
mode:
authorGravatar Joseph <[email protected]>2018-02-28 23:33:35 +0000
committerGravatar GitHub <[email protected]>2018-02-28 23:33:35 +0000
commitc2dfc1bb34e8153bc7372ce6056c6883616ece9b (patch)
tree0df39f5f8d60d3f528d48347e9a5c8b276875175 /templates/main
parentreduce memory allocation from 2GB to 512MB (#28) (diff)
Add error messages (#30)
* Add error messages Signed-off-by: JoeBanks13 <[email protected]> * Remove un-used keyword arg from 404 * Assert for status code instead of full content * PEP8 * test lint * please coverage * oh * Exclude websockets.py from coverage * Move code output into terminal * Switch typewriter href protocol * Add tests for websockets.py * Abort previous commit, coveralls did not let coverage go down * Add more pauses and request => response * move css and js out, add typewriter JS to our own repo & add method for appending text in bulk. * Enable REPL on 4XX and change error descriptions * commas * /error path
Diffstat (limited to 'templates/main')
-rw-r--r--templates/main/base.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/main/base.html b/templates/main/base.html
index 3da4715e..50281159 100644
--- a/templates/main/base.html
+++ b/templates/main/base.html
@@ -14,7 +14,8 @@
</head>
<body class="page-{{ current_page }}">
{% include "main/navigation.html" %}
-{% if current_page != "index" %}
+{% if current_page != "index"%}
+ {% block beta_error %}
<div class="uk-container uk-section" style="padding-top: 10px; padding-bottom: 10px;">
<div class="uk-container uk-container-small">
<div class="uk-alert-danger" uk-alert>
@@ -25,6 +26,7 @@
</div>
</div>
</div>
+ {% endblock %}
{% endif %}
{% block content %}{% endblock %}
</body>