{# Tell user why a "404 Not Found" error occurred. To involk this from any method: abort(404, item_name) # where item_name is the local item name #} {% import "forms.html" as forms %} {% extends theme("layout.html") %} {% block content %}
{{ _("The item '{item_name}' does not exist or you do not have permission to access it.").format(item_name=item_name) }}
{% if path %}{{ _("The full path is:") }} {{ path }}
{% endif %}