{% extends "flask_debug/base.html" %} {% block scripts %} {{super()}} {% endblock %} {% block container %} {{super()}}

Reflection for {{g.app.name}}

Views

{% for name, view in g.app.view_functions.items()|sort(True) %} {% endfor %}
Name View function
{{name}} {{view}}

URLMap

{% for rule in g.app.url_map.iter_rules()|sort(True, attribute='endpoint') %} {% endfor %}
Rule Methods Endpoint
{{rule}} {{rule.methods|sort|join(', ')}} {{rule.endpoint}}

Converters

{% for name, conv in g.app.url_map.converters.items() %} {% endfor %}
Type-name Converter function
{{name}} {{conv}}
{% endblock %}