{% extends "moya.debug/base.html" %} {% block "title" %}404 - Not Found{% endblock %} {%- def "info" %} {%- if map %} {% if title %}
${request.path} was not found on this server
You are seeing this page because you have moya.debug installed. If you set [project]/debug=no in your settings, Moya will use your "404.html" template.
The following route(s) matched the URL:
Target | Application | URL data | Response | ||
---|---|---|---|---|---|
${html:trace.target_html} | {%- if trace.app %}${trace.app.name} | {%- else %}N/A | {%- endif %}
{%- for k, v in items:trace.route_data if k != 'app' %}
${k} =
"${v}" {%- endfor %} |
{%- if trace.response %}
${trace.response} | {%- else %}none | {%- endif %}
The URL did not match any of the routes in the project.
{%- endif %}Moya attempted to match the requested URL with the following route(s):
Some routes may be omitted here if they didn't match .request.method (i.e. you wont see POST only route(s) for a GET request).
Route | Method(s) | Application | Target(s) |
---|---|---|---|
${html:url} | ${html:methods} | ${app} |
{%- for target, target_html in targets %}
${html:target_html}
{%- endfor %} |