{% extends "bootstrap/base.html" %} {% block title %}Welcome {{ title }}{% endblock %} {% block head %} {{super()}} {% endblock %} {% block navbar %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% endwith %} {% block app_content %} {% endblock %} {% if 'GET' in allowed_methods %}
GET
{% endif %} {% if 'DELETE' in allowed_methods %}
{% endif %} {% if request.endpoint not in ['index','token','thanks'] %}
{% if view_description %}
{{ view_description|safe }}
{% endif %}
{{ request.method }} {{ request.url | replace("http://","https://") }}
            
HTTP {{ status }}{% autoescape off %}
{% if content %}{{ content|urlize_quoted_links }}{% endif %}
{% endautoescape %}
{% if 'POST' in allowed_methods or 'PUT' in allowed_methods or 'PATCH' in allowed_methods %}
{% if 'POST' in allowed_methods %} {% endif %} {% if 'PUT' in allowed_methods %} {% endif %} {% if 'PATCH' in allowed_methods %} {% endif %}
{% endif %}
{% endif %} {% endblock %} {% block scripts %} {{super()}} {% endblock %}