{% extends 'default_index.html' %} {% block short_info %} {% if context.project_name %}

Your project ({{context.project_name}}) default page

{% endif %}

{% if current_user.is_authenticated %} Hi {{ current_user.username }}! you'r logged in {% else %} Login to take actions {% endif %}

{% endblock short_info %} {% block main %}

Useful links

{% if current_user.is_authenticated %} Register Logout {% else %} Login {% endif %} Admin page Repository Documentation
{% if context.blueprints_list|length > 0 %}

App routes

{% for blueprint in context.blueprints_list %} {{blueprint.name}} {% endfor %}
{% endif %}

An extension of flask web framework that erase the complexity of structuring flask project blueprint, packages, connecting other flask extensions, and other annoying stuffs

{% endblock main %}