Files
pyrom/app/templates/common/403.html
2026-04-26 14:04:24 +03:00

9 lines
298 B
HTML

{%- 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 -%}