This commit is contained in:
2026-04-26 14:04:24 +03:00
parent 9a10f30634
commit 10ea1f03cd
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
{%- from 'common/macros.html' import subheader -%}
{%- extends 'base.html' -%}
{%- block title -%}Forbidden{%- endblock -%}
{%- block content -%}
{%- call() subheader('403 Forbidden') -%}
<span>You are not allowed to access this page or perform this action.</span>
{%- endcall -%}
{%- endblock -%}

View File

@@ -3,6 +3,6 @@
{%- block title -%}Not found{%- endblock -%}
{%- block content -%}
{%- call() subheader('404 Not Found') -%}
<span>The requested URL was not found.</span>
<span>The requested page was not found.</span>
{%- endcall -%}
{%- endblock -%}