{% extends "moya.debug/base.html" %} {% block "title" %}404 - Not Found{% endblock %} {%- def "info" %} {%- if map %} {% if title %}

${title}

{% endif %}
{%- for k, v in sorted:items:map %}
${k}
${v or html:' '}
{%- endfor %}
{%- endif %} {%- enddef %} {% block "css" append %} {% endblock %} {% block "body" %}

404 - Not Found

${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.

Trace

{%- if .urltrace %}

The following route(s) matched the URL:

{%- for trace in .urltrace %} {%- if trace.app %} {%- else %} {%- endif %} {%- if trace.response %} {%- else %} {%- endif %} {%- endfor %}
Target Application URL data Response
${html:trace.target_html} ${trace.app.name}N/A {%- for k, v in items:trace.route_data if k != 'app' %} ${k} = "${v}"
{%- endfor %}
${trace.response}none
{%- else %}

The URL did not match any of the routes in the project.

{%- endif %}

Routes

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).

{%- for url, methods, app, targets in renderable:.urls %} {%- endfor %}
Route Method(s) Application Target(s)
${html:url} ${html:methods} ${app} {%- for target, target_html in targets %} ${html:target_html}
{%- endfor %}
{% endblock %}