{% extends "default_index.html" %} {% block short_info %}
Your project ({{project_name}}) default page
{% if current_user.is_authenticated %} Hi {{ current_user.username }}! {% else %} please login {% endif %}
{% endblock short_info %} {% block main %} {% if blueprints_list|length > -1 %}Routes
{% for blueprint in blueprints_list %} {{blueprint.name}} {% endfor %} {% if current_user.is_authenticated %} logout {% else %} login register {% endif %}An extension of flask web framework of python that erase the complexity of constructing flask project blueprint, packages, and other annoying stuffs