{% block attribute_title %}
{% if attribute_title %}
{{ attribute_title_prefix }}{{ attribute_title }}{{ attribute_title_postfix }}
{% elif x_attribute_title %}
{% if x_attribute_title_prefix %}
{% endif %}
{% if x_attribute_title_postfix %}
{% endif %}
{% endif %}
{% endblock %}
{% if attribute_href or x_attribute_href %}
{% else %}
{% endif %}
{% block attribute_value %}
{% if attribute_value %}
{{ attribute_value_prefix }}{{ attribute_value }}{{ attribute_value_postfix }}
{% elif x_attribute_value %}
{% if x_attribute_value_prefix %}
{% endif %}
{% if x_attribute_value_postfix %}
{% endif %}
{% endif %}
{% if show_copy_button %}
{% block copy_button %}
{% firstof attribute_value or x_attribute_value as value %}
{% include 'django_spire/element/copy_to_clipboard_element.html' with value=value copy_func=copy_func %}
{% endblock %}
{% endif %}
{% endblock %}
{% if attribute_href or x_attribute_href %}
{% else %}
{% endif %}