{% extends "base.html" %} {% set active_page = "ideas" %} {% block title %}Ideas — IETF Draft Analyzer{% endblock %} {% block content %}

Extracted Ideas

{{ data.total }} technical ideas extracted from rated drafts

{{ data.total }}
Total Ideas
{{ data.by_type | length }}
Idea Types
{% set top_type = data.by_type.keys() | list %} {% if top_type %}
{{ top_type[0] }}
Most Common Type
{{ data.by_type[top_type[0]] }}
{{ top_type[0] }} Count
{% endif %}

Ideas by Type

{{ data.ideas | length }} ideas shown
{% for idea in data.ideas %}
{{ idea.title }} {% if idea.type %} {{ idea.type }} {% endif %} {% if idea.novelty_score is not none and idea.novelty_score %} N:{{ idea.novelty_score }} {% endif %}

{{ idea.description }}

{{ idea.draft_name }}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}