{% extends "base.html" %} {% from "_helpers.html" import render_field %} {% block title %}Associate bug with report{% endblock %} {% block body %}

Associate bug with report {{report.id}}

{{ render_field(form.bug_id) }} {{ render_field(form.bugtracker) }}

{% if new_bug_urls %}

By clicking the links below, you'll be taken to a pre-filled form allowing you to create a new bug for this report. After creating the bug, please copy it's ID to the form above and associate it.

{% for (text, url) in new_bug_urls %}

Create new bug for {{text}}...

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