{% extends 'base.html' %} {% load static i18n %} {% block content %}
{% trans 'Back' %}
{% trans 'Decision support tool' %}

{% blocktrans count counter=blueprints|length %} This template matches your criterias! {% plural %} These templates match your criterias! {% endblocktrans %}

{% for blueprint_slug, blueprint, time in blueprints %}
{{ blueprint.title }}

{{ blueprint.title }}

    {% for phase_content in blueprint.content %}
  • Phase {{ forloop.counter }}: {{ phase_content.description }}
  • {% endfor %}
{% include 'euth_blueprints/includes/infopage.html'%}
{% endfor %}
{% include 'euth_blueprints/includes/breadcrumbs.html' with result=True %}
{% endblock %}