{% extends "base.html" %} {% set active_page = "search" %} {% block title %}Search: {{ query }} — IETF Draft Analyzer{% endblock %} {% block content %}

Search Results

{% if query %}

Found {{ total }} results for "{{ query }}"

{% else %}

Enter a search query to find drafts, ideas, authors, and gaps.

{% endif %}
{% if query %} {% if results.drafts %}

Drafts ({{ results.drafts|length }})

{% for d in results.drafts %}
{{ d.title }}
{{ d.name }}
{% if d.abstract %}

{{ d.abstract }}

{% endif %}
{% if d.date %}{{ d.date[:10] }}{% endif %} {{ d.group }}
{% endfor %}
{% endif %} {% if results.ideas %}

Ideas ({{ results.ideas|length }})

{% for idea in results.ideas %}
{{ idea.title }}
{% if idea.description %}

{{ idea.description }}

{% endif %}
{% if idea.type %}{{ idea.type }}{% endif %} {{ idea.draft_name }}
{% endfor %}
{% endif %} {% if results.authors %}

Authors ({{ results.authors|length }})

{% for author in results.authors %}
{{ author.name }}
{% if author.affiliation %}
{{ author.affiliation }}
{% endif %}
{% endfor %}
{% endif %} {% if results.gaps %}

Gaps ({{ results.gaps|length }})

{% for gap in results.gaps %}
{{ gap.topic }} {% if gap.description %}

{{ gap.description }}

{% endif %}
{% if gap.category %}{{ gap.category }}{% endif %} {% if gap.severity %} {{ gap.severity }} {% endif %}
{% endfor %}
{% endif %} {% if total == 0 %}

No results found for "{{ query }}"

Try different keywords or check the spelling.

{% endif %} {% endif %} {% endblock %}