{% extends base_template %} {% load static %} {% block title %}{{ action }} SOP{% if site_name %} | {{ site_name }}{% endif %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ action }} SOP

{% csrf_token %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{% for cat in all_categories %} {% endfor %}

Click to toggle. Type a name to create a new category on the fly.

{{ form.order }}

Lower numbers appear first.

{% if form.order.errors %}
{{ form.order.errors }}
{% endif %}
{{ form.is_published }}
{% if form.is_published.errors %}
{{ form.is_published.errors }}
{% endif %}
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors }}
{% endif %}
{% if sop %} Cancel {% else %} Cancel {% endif %}
{% if sop %} Delete SOP {% endif %}
{% endblock %}