{# templates/admin/fields/list_map_link.html.twig #} {% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %} {% block field %} {% set profile = object.userProfiles.first %} {# Extract coordinates from the houseAddress string if latitude isn't set #} {% if profile and profile.houseAddress and "Coordinates:" in profile.houseAddress %} {% set rawCoords = profile.houseAddress|replace({'Coordinates: ': ''}) %} {% set coordsArray = rawCoords|split(',') %} {% if coordsArray|length == 2 %} View Map {% endif %} {% else %} No GPS {% endif %} {% endblock %}