{% 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 %}
{% 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 %}
{% if generated_drafts %}

Generated Drafts

{{ generated_drafts | length }} pre-generated example{{ 's' if generated_drafts | length != 1 }}. View all

{% endif %} {% endblock %} {% block extra_scripts %}{% endblock %}