{% extends 'layout.html' %} {% load common %} {% load static %} {% block layout_script %} {% endblock %} {% block layout_content %} {% include 'extra/base_messages.html' %}
List Disposisi
{% if display == 'col' %}
{% for i in paging %}
{{ i.tanggal }}
{{ i.kepada|linebreaksbr }}
{{ i.catatan|linebreaksbr }}
{{ i.sifat }}

{% if session_current.role in allowed_roles or i.user_input == session_current.pk %} {% endif %}
{% empty %}
(kosong)
{% endfor %}
{% elif display == 'list' %} {% for i in paging %} {% empty %} {% endfor %}
Tanggal Sifat Kepada Catatan
{{ i.tanggal }} {{ i.sifat }} {{ i.kepada|linebreaksbr }} {{ i.catatan|linebreaksbr }} {% if session_current.role in allowed_roles or i.user_input == session_current.pk %} {% endif %}
(kosong)
{% endif %}
{% endblock %}