{% if "detail" in buttons %} Details {% endif %} {% if "changelog" in buttons %} Change log {% endif %} {% if "approve" in buttons and have_permission and record.is_active_stage and can_approve and not record.approval_workflow.is_canceled %} {% if request.user not in record.users_that_already_approved %} Approve this stage {% else %} You already approved this stage {% endif %} {% endif %} {% if "deny" in buttons and have_permission and record.is_active_stage and request.user not in record.users_that_already_approved and can_approve and not record.approval_workflow.is_canceled %} {% if request.user not in record.users_that_already_approved %} Deny this stage {% else %} Deny this stage {% endif %} {% endif %} {% if "comment" in buttons and have_permission and record.is_not_done_stage and not record.approval_workflow.is_canceled %} Comment this stage {% endif %}