{% if admin.isGranted('EDIT', object) and admin.hasRoute('edit') %}
{% set current_position = currentObjectPosition(object) %}
{% set last_position = lastPosition(object) %}
{% set enable_top_bottom_buttons = field_description.options.actions.move.enable_top_bottom_buttons ?? true %}
{% if enable_top_bottom_buttons and current_position < last_position %}
{% endif %}
{% if current_position < last_position %}
{% endif %}
{% if current_position > 0 %}
{% endif %}
{% if enable_top_bottom_buttons and current_position > 0 %}
{% endif %}
{% endif %}