{% extends "base_nav.html" %} {% block jsheader %} {% endblock %} {% block info %}
This is meant as an early mockup, the content and layout may change before the actual app is updated.
The proposal functionality is hooked up to partner-bugzilla which isn't always in sync with the real bugzilla instance. Any bugs proposed though this page will only show up there and not in the production bugzilla. You may see errors about invalid bugs which would not be true about the production bugzilla instance.
{% endblock %} {% block body %}

Propose a Blocker or Freeze Exception

{% if bugform.errors %}
There were issues with your submission, please check below for more details.
{% endif %}
{{ bugform.csrf_token }}
Bugzilla Information {% if bugform.bugid.errors or bugform.bz_user.errors %} {% endif %}
{{ bugform.bugid.label.text }} {{ bugform.bz_user.label.text }}
{% if bugform.bugid.errors %}
    {% for error in bugform.bugid.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% if bugform.bz_user.errors %}
    {% for error in bugform.bz_user.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ bugform.bugid }} {{ bugform.bz_user }}
Blocker Information
{% if bugform.milestone.errors %} {% endif %}
{{ bugform.milestone.label.text }}
    {% for error in bugform.milestone.errors %}
  • {{ error }}
  • {% endfor %}
{{ bugform.milestone }}
{% if bugform.blocker.errors or bugform.freeze_exception.errors %}
    {% for error in bugform.blocker.errors %}
  • {{ error }}
  • {% endfor %} {% for error in bugform.freeze_exception.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ bugform.blocker.label.text }} {{ bugform.freeze_exception.label.text }}
{{ bugform.blocker }} {{ bugform.freeze_exception }}
Blocker
A release blocking bug is a bug which is judged severe enough to justify blocking release until it is fixed. Blocker bugs generally violate a release criterion (alpha, beta, final) and follow the blocker SOP.
Freeze Exception
Freeze exception bugs are generally not possible to fix with an update after release but do not qualify as release blocking. Freeze exception bugs follow the freeze exception SOP.
Justification (Required)
{% if bugform.justification.errors %}
    {% for error in bugform.justification.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ bugform.justification(rows=5) }}
Why Require Justification?
Proposing a bug as either blocker or freeze exception requires review by Fedora contributors. This process is much more straight forward when there is a clear reason why a bug has been proposed. If you are proposing a blocker, please cite a violated release criterion ( alpha, beta, final) if possible.
{% endblock %} {% block footer %} {% endblock %}