{% load static %} Manajemen Keluhan

Informasi Keluhan


{{ complaint.member.user.first_name }} {{ complaint.member.user.last_name }}
{{ complaint.member.phone }}
{{ complaint.member.user.email }}
{{ complaint.member.origin }}
{{ complaint.member.role }}
{{ complaint.title }}
{% for division in complaint.assigned_divisions.all %} {{ division.name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{{ complaint.description }}
{{ complaint.leader.name }}

Lokasi Kejadian: {{ complaint.location.name }}

    {% for worker in complaint.worker_set.all %}
  • {{ worker.name }} - {{ worker.division }}
  • {% endfor %}
{% for image in complaint.complaintimages_set.all %} {% if not image.log %}
{% endif %} {% endfor %}
    {% for log in complaint.log_set.all %}
  • {{ log.date }} : {{ log.description }}

    {% for image in log.complaintimages_set.all %}
    {% endfor %}
  • {% endfor %}
{% if complaint.status == 'S' %}
Submitted
{% elif complaint.status == 'P' %}
On Progress
{% elif complaint.status == 'F' %}
Finished
{% endif %}
{% block script %} {% endblock %}