{% load jalali_tags %} {% if show_list %}
{{ item.label }}:
{% if item.input_type == "select" and item.options %} {% for val, label, selected in item.options %} {% if selected %} {{ label }} {% endif %} {% endfor %} {% elif item.input_type == "file" %} مشاهده فایل {% elif item.input_type == "textarea" %}{{ item.value }}
{% elif item.input_type == "date" %}
{{ item.value|to_jalali:'%Y/%m/%d'|default:'' }}
{% elif item.input_type == "datetime" %}{{ item.value|to_jalali:'%Y/%m/%d %H:%m:%S'|default:'' }}
{% elif item.input_type == "time" %}{{ item.value|to_jalali:'%H:%m:%S'|default:'' }}
{% else %} {% if item.value and item.value|slice:":4" == "http" %} {{ item.value }} {% else %}{{ item.value|default:"" }}
{% endif %} {% endif %} {% if instance and instance.errors and item.field_name in instance.errors %}{{ instance.errors }}
{% endif %}