{% extends "base.html" %} {% block title %}{{ t("ideas.title") }} · {{ project_name }} · {{ t("site.tool") }}{% endblock %} {% block content %} {{ t("ideas.title") }} {{ t("ideas.subtitle") }} {% for group in groups %} {{ group.status.label }}{% if group.status.i18n %} {{ group.status.raw }}{% endif %} {{ t("ideas.group_count", n=group.count) }} {% for idea in group.ideas %} {{ idea.id }} {{ idea.title }} {% if idea.detail %} {{ idea.detail }} {% endif %} {{ t("ideas.benchmark") }} {% if idea.benchmark_sources %} {% for source in idea.benchmark_sources %} {% if source.ref %}{{ source.ref }}{% endif %}{% if source.note %}{{ source.note }}{% endif %} {% endfor %} {% else %} {{ t("ideas.no_sources") }} {% endif %} {{ t("ideas.methodology") }} {% if idea.methodology_sources %} {% for source in idea.methodology_sources %} {% if source.ref %}{{ source.ref }}{% endif %}{% if source.note %}{{ source.note }}{% endif %} {% endfor %} {% else %} {{ t("ideas.no_sources") }} {% endif %} {% if idea.relates_to %} {{ t("ideas.relates_to") }} {% for ref in idea.relates_to %} {% if ref.known %} {{ ref.id }} {% else %} {{ ref.id }} {{ t("ideas.unknown_node") }} {% endif %} {% endfor %} {% endif %} {% if idea.outcome %} {{ t("ideas.outcome") }} {% if idea.outcome.ref.known %} {{ idea.outcome.ref.id }} {% else %} {{ idea.outcome.ref.id }} {{ t("ideas.unknown_node") }} {% endif %} {% if idea.outcome.note %} {{ idea.outcome.note }} {% endif %} {% endif %} {% if idea.created %} {{ t("ideas.created") }} {{ idea.created }} {% endif %} {% if idea.last_updated %} {{ t("ideas.updated") }} {{ idea.last_updated }} {% endif %} {% endfor %} {% endfor %} {% endblock %}
{{ t("ideas.subtitle") }}
{{ idea.detail }}
{% if idea.created %} {{ t("ideas.created") }} {{ idea.created }} {% endif %} {% if idea.last_updated %} {{ t("ideas.updated") }} {{ idea.last_updated }} {% endif %}