{% block head %}
{% block title %}{% endblock %}
{% block stylesheets %}{% endblock stylesheets %} {% endblock head %}
Inicio
{% if not current_user.is_anonymous %}
Mis facturas
Subir factura
Mi consumo
{% endif %}
{% if current_user.is_anonymous %}
Regístrate
Iniciar sesión
{% else %}
{{ current_user.username }}
Cerrar sesión
{% endif %}
{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock content %}
{% block script %}{% endblock script %}