{% extends "template.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %}Index{% endblock %} {% block content %}
Select a project
{% if reset_btn is not none %} {% endif %} {% if selected is none %} {% set cls = "list-group-item list-group-item-action" %} {% else %} {% set cls = "list-group-item list-group-item-action disabled" %} {% endif %} {% for p in projects %} {% if loop.index == selected_id | int %} {% set cls = "list-group-item list-group-item-action list-group-item-secondary" %} {% endif %} {% endfor %}
{% endblock %}