diff options
author | Dmitry Grachikov <dgrachikov@gmail.com> | 2024-12-09 23:23:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-09 22:23:36 +0000 |
commit | fec3352b68473f1e1d9b2c038a783b7e2c8650e6 (patch) | |
tree | 5716871543bf07019aa5914f18d6ffdf8c1c6d7b /bskyweb | |
parent | bc4b4a3cfec482672ee8bc8cebd0351f29f0a3c8 (diff) | |
download | voidsky-fec3352b68473f1e1d9b2c038a783b7e2c8650e6.tar.zst |
Access content of extended block properly (block.Super instead of super()) (#7026)
Diffstat (limited to 'bskyweb')
-rw-r--r-- | bskyweb/templates/error.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bskyweb/templates/error.html b/bskyweb/templates/error.html index f8fdd290c..08407bd77 100644 --- a/bskyweb/templates/error.html +++ b/bskyweb/templates/error.html @@ -12,14 +12,14 @@ {# don't include the bundle on non-404 error pages #} {% block head_bundle %} {% if statusCode == 404 %} - {{ super() }} + {{ block.Super }} {% else %} {% endif %} {% endblock %} {%- block body_all %} {% if statusCode == 404 %} - {{ super() }} + {{ block.Super }} {% else %} <h1>{{ statusCode }}: Server Error</h1> <p>Sorry about that! Our <a href="https://bluesky.statuspage.io/">Status Page</a> might have more context. |