{% extends "layouts/base.html" %} {% load i18n static %} {% block title %}{% trans "New Appreciation" %} - PX360{% endblock %} {% block content %}

{% trans "New Appreciation" %}

{% trans "Recognize a department for excellent service or care." %}

{% trans "Back" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.hospital }} {% if form.hospital.errors %}

{{ form.hospital.errors }}

{% endif %}
{{ form.department }} {% if form.department.errors %}

{{ form.department.errors }}

{% endif %}
{{ form.message_en }} {% if form.message_en.errors %}

{{ form.message_en.errors }}

{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}