{% extends "base.html" %} {% set active_page = "gaps" %} {% block title %}{{ gap.topic }} — Gap Explorer{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ gap.topic }}

{{ gap.severity | upper }}
{% if gap.category %} {{ gap.category }} {% endif %}

Description

{{ gap.description }}

{% if gap.evidence %}

Evidence

{{ gap.evidence }}

{% endif %}
Search related drafts {% if gap.category %} | Browse {{ gap.category }} drafts {% endif %}
{% if related_drafts %}

Related Drafts ({{ related_drafts|length }})

{% for d in related_drafts[:15] %}

{{ d.title }}

{{ d.name }} {% if d.date %} {{ d.date }} {% endif %}
{% if d.categories %}
{% for cat in d.categories[:3] %} {{ cat }} {% endfor %}
{% endif %}
{% if d.score is not none %} {{ d.score }} {% endif %}
{% endfor %}
{% if related_drafts|length > 15 %}

Showing 15 of {{ related_drafts|length }} related drafts.

{% endif %}
{% endif %}

Linked Proposals

New Proposal
{% if proposals %}
{% for p in proposals %}

{{ p.title }}

{% if p.description %}

{{ p.description[:120] }}{% if p.description | length > 120 %}...{% endif %}

{% endif %}
{{ p.status | upper }}
{% endfor %}
{% else %}

No proposals yet -- create one?

{% endif %}

Generate Internet-Draft

Use AI to generate a full Internet-Draft addressing this gap

Want to see what generated drafts look like without waiting? View the demo page with {{ generated_drafts | length }} pre-generated examples.
{% endblock %} {% block extra_scripts %} {% endblock %}