{% extends "base.html" %} {% load test_tags %} {% block content %}

{{ object.pk }}

small_pos_int: {{ object.small_pos_int.value|to_str }} {{ object.small_pos_int.label|to_str }}

small_int: {{ object.small_int.value|to_str }} {{ object.small_int.label|to_str }}

pos_int: {{ object.pos_int.value|to_str }} {{ object.pos_int.label|to_str }}

int: {{ object.int.value|to_str }} {{ object.int.label|to_str }}

big_pos_int: {{ object.big_pos_int.value|to_str }} {{ object.big_pos_int.label|to_str }}

big_int: {{ object.big_int.value|to_str }} {{ object.big_int.label|to_str }}

date_enum: {{ object.date_enum.value|to_str }} {{ object.date_enum.label|to_str }}

{% if object.datetime_enum|is_enum %}

datetime_enum: {{ object.datetime_enum.value|to_str }} {{ object.datetime_enum.label|to_str }}

{% else %}

datetime_enum: {{ object.datetime_enum|to_str }} {{ object.datetime_enum|to_str }}

{% endif %}

time_enum: {{ object.time_enum.value|to_str }} {{ object.time_enum.label|to_str }}

duration_enum: {{ object.duration_enum.value|to_str }} {{ object.duration_enum.label|to_str }}

decimal_enum: {{ object.decimal_enum.value|to_str }} {{ object.decimal_enum.label|to_str }}

constant: {{ object.constant.value|to_str }} {{ object.constant.label|to_str }}

text: {{ object.text.value|to_str }} {{ object.text.label|to_str }}

extern: {{ object.extern.value|to_str }} {{ object.extern.name|to_str }}

dj_int_enum: {{ object.dj_int_enum.value|to_str }} {{ object.dj_int_enum.label|to_str }}

dj_text_enum: {{ object.dj_text_enum.value|to_str }} {{ object.dj_text_enum.label|to_str }}

{% if object.non_strict_int|is_enum %}

non_strict_int: {{ object.non_strict_int.value|to_str }} {{ object.non_strict_int.label|to_str }}

{% else %}

non_strict_int: {{ object.non_strict_int|to_str }} {{ object.non_strict_int|to_str }}

{% endif %} {% if object.non_strict_text|is_enum %}

non_strict_text: {{ object.non_strict_text.value|to_str }} {{ object.non_strict_text.label|to_str }}

{% else %}

non_strict_text: {{ object.non_strict_text|to_str }} {{ object.non_strict_text|to_str }}

{% endif %}

no_coerce: {{ object.no_coerce|to_str }} {{ object.no_coerce|to_str }}

{% if update_path %} Edit {% endif %} {% if delete_path %} Delete {% endif %}

{% endblock %}