{% extends "base.html" %} {% block title %}Gate suggestions — karyab{% endblock %} {% block content %}

Suggested gate improvements

The ranker reviewed recent off-target, borderline, and high-scoring jobs and proposed the keyword changes below. Nothing is written yet — tick the changes you want and click Apply selected. Unticked changes are discarded.

{% if not has_changes %}
No changes suggested — your gate keywords look good.

Back to config

{% else %}
{# Adds are pre-checked (additive-by-default); removes are opt-in (unchecked). #} {% macro change_block(title, field, items, sign, checked) %} {% if items %}

{{ title }}

{% for it in items %} {% endfor %}
{% endif %} {% endmacro %} {{ change_block("Add to exclude keywords", "add_exclude", proposal.add_exclude, "+", true) }} {{ change_block("Remove from exclude keywords", "remove_exclude", proposal.remove_exclude, "−", false) }} {{ change_block("Add to target keywords", "add_target", proposal.add_target, "+", true) }} {{ change_block("Remove from target keywords", "remove_target", proposal.remove_target, "−", false) }}
Cancel
{% endif %} {% endblock %}