{{ function('get_the_title', pet_id) }}

{{ pll_e('Breed') }}:

{{ function('get_field', 'breed', pet_id) }}

{{ pll_e('Weight') }}:

{% set weight_key = function('get_field', 'weight', pet_id) %} {% if weight_key == 'below_1_5' %}{{ pll_e('from 0,5 kg to 1,5 kg') }} {% elseif weight_key == '1_5-3' %}{{ pll_e('from 1.5 to 3 kg') }} {% elseif weight_key == '3-5' %}{{ pll_e('from 3 to 5 kg') }} {% elseif weight_key == '5-8' %}{{ pll_e('from 5 to 8 kg') }} {% elseif weight_key == '8-11' %}{{ pll_e('from 8 to 11 kg') }} {% elseif weight_key == '11-15' %}{{ pll_e('from 11 to 15 kg') }} {% elseif weight_key == '15-20' %}{{ pll_e('from 15 to 20 kg') }} {% elseif weight_key == '20-25' %}{{ pll_e('from 20 to 25 kg') }} {% elseif weight_key == '25-35' %}{{ pll_e('from 25 to 35 kg') }} {% elseif weight_key == 'more_35' %}{{ pll_e('More than 35 kg') }} {% endif %}

{% if function('get_field', 'old', pet_id) %}

{{ pll_e('Age') }}:

{% set age_key = function('get_field', 'old', pet_id) %} {% if age_key == 'normal' %}{{ pll_e('Adult (from 1 year to 7 years)') }} {% elseif age_key == 'old' %}{{ pll_e('Elderly (from 7 to 12 years)') }} {% elseif age_key == 'very_old' %}{{ pll_e('Aging (12 years and older)') }} {% elseif age_key == 'baby' %}{{ pll_e('Baby (from 0 to 1 year)') }} {% endif %}

{% else %} {% set month = function('get_field', 'month', pet_id) %} {% set zero = month < 10 ? '0' : '' %}

{{ pll_e('Birthday') }}:

{{ function('get_field', 'day', pet_id) }}.{{ zero }}{{ month }}.{{ function('get_field', 'year', pet_id) }}

{% endif %}

{{ pll_e('Activity') }}:

{% set activity_key = function('get_field', 'activity', pet_id) %} {% if activity_key == 'low' %}{{ pll_e('Low') }} {% elseif activity_key == 'moderate' %}{{ pll_e('Moderate') }} {% elseif activity_key == 'high' %}{{ pll_e('High') }} {% endif %}

{% if function('get_field', 'type', pet_id) == 'cat' and function('get_field', 'sterilized', pet_id) %}

{{ pll_e('Sterilized') }}

{% endif %}