{% if LANGUAGE_CODE == 'ko' or LANGUAGE_CODE == 'ja' %}
{{ form.created|date:'Y-m-d / H:i:s' }}
{% else %}
{{ form.created|date:'d M Y H:i:s' }}
{% endif %}
{% if form.updated %}
{% translate "Updated" %}
{% if LANGUAGE_CODE == 'ko' or LANGUAGE_CODE == 'ja' %}
{{ form.updated|date:'Y-m-d / H:i:s' }}
{% else %}
{{ form.updated|date:'d M Y H:i:s' }}
{% endif %}
{% endif %}
{% translate "Form Preview" %}
{% for field in fields %}
{% with "hrapps/shared/partials/fields/form/"|add:field.type|add:".html" as field_partial %}
{% include field_partial with field=field disabled=True id=forloop.counter %}
{% endwith %}