{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{{ title }} - {% trans "Observation Categories" %} - PX360{% endblock %} {% block content %}
{{ title }}
{% csrf_token %}
{{ form.name_en }} {% if form.name_en.errors %}
{{ form.name_en.errors.0 }}
{% endif %}
{{ form.name_ar }} {% if form.name_ar.errors %}
{{ form.name_ar.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{{ form.icon }}
{% trans "Bootstrap icon class, e.g., bi-exclamation-triangle" %}
{% trans "Browse icons" %}
{% if form.icon.errors %}
{{ form.icon.errors.0 }}
{% endif %}
{{ form.sort_order }}
{% trans "Lower numbers appear first" %}
{% if form.sort_order.errors %}
{{ form.sort_order.errors.0 }}
{% endif %}
{{ form.is_active }}
{% trans "Inactive categories won't appear in the public form" %}

{% trans "Cancel" %}
{% endblock %}