Rater Role
{% if form.rater_role.field.required %}
*
{% endif %}
{{ form.rater_role }}
{% if form.rater_role.errors %}
{{ form.rater_role.errors }}
{% endif %}
Rater ID
{% if form.rater_id.field.required %}
*
{% endif %}
{{ form.rater_id }}
{% if form.rater_id.errors %}
{{ form.rater_id.errors }}
{% endif %}
{% endif %}
Department
{% if form.department.field.required %}
*
{% endif %}
{{ form.department }}
Cell Phone
{% if form.cell_phone.field.required %}
*
{% endif %}
{{ form.cell_phone }}
{% if request.user.is_superuser or request.user.is_company_admin%}
Company Administrator
{% if form.is_company_admin.field.required %}
*
{% endif %}
{% endif %}
{{ form.is_company_admin }}
{% if form.department.errors %}
{{ form.department.errors }}
{% endif %}
{% if form.cell_phone.errors %}
{{ form.cell_phone.errors }}
{% endif %}
{% if form.is_company_admin.errors %}
{{ form.is_company_admin.errors }}
{% endif %}