{%- extends "base.html" -%} {% block content %}

{{ title }}

{%- if concurrent_modification %} {%- include 'log/advisory_log_table.html' %} {%- endif %}
{{ form.hidden_tag() }}
{{ render_field(form.reference, class='full size', maxlength=Advisory.REFERENCE_LENGTH, placeholder='External reference...', indent=7) }}
{{ render_field(form.workaround, class='full size', maxlength=Advisory.WORKAROUND_LENGTH, placeholder='Optional workaround...', indent=7) }}
{{ render_field(form.impact, class='full size', maxlength=Advisory.IMPACT_LENGTH, placeholder='Overall impact...', indent=7, autofocus='') }}
{%- if concurrent_modification %}
{{ render_checkbox(form.force_submit, indent=7) }}
{%- endif %} {{ form.edit(class='button-primary', accesskey='s') }}
{%- endblock %}