{% extends "bootstrap/base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block head %} {{ super() }} {% endblock %} {% block title %} Python Agent DEvelopment framework {% endblock %} {% block content %}
{% for message in get_flashed_messages() %}
{{ message }}
{% endfor %} {{ form.csrf_token }} {{ wtf.quick_form(form) }}
{% endblock %}