123456789101112131415161718192021222324252627282930313233343536373839 |
- {#
- This file is part of the Sonata package.
- (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- #}
- <td class="sonata-ba-list-field sonata-ba-list-field-{{ field_description.type }}" objectId="{{ admin.id(object) }}"{% if field_description.options.row_align is defined %} style="text-align:{{ field_description.options.row_align }}"{% endif %}>
- {% set route = field_description.options.route.name|default(null) %}
- {% set action = route == 'show' ? 'VIEW' : route|upper %}
- {% if
- field_description.options.identifier is defined
- and route
- and action
- and admin.hasRoute(route)
- and admin.isGranted(action, action in ['VIEW', 'EDIT'] ? object : null)
- %}
- <a class="sonata-link-identifier" href="{{ admin.generateObjectUrl(route, object, field_description.options.route.parameters) }}">
- {%- block field %}{{ value }}{% endblock -%}
- </a>
- {% else %}
- {% set isEditable = field_description.options.editable is defined and field_description.options.editable and admin.isGranted('EDIT', object) %}
- {% set xEditableType = field_description.type|sonata_xeditable_type %}
- {% if isEditable and xEditableType %}
- {% set url = path('sonata_admin_set_object_field_value', { 'context': 'list', 'field': field_description.name, 'objectId': admin.id(object), 'code': admin.code(object) }|merge(admin.getPersistentParameters|default([])) ) %}
- <span {% block field_span_attributes %}class="x-editable" data-type="{{ xEditableType }}" data-value="{{ value }}" data-title="{{ field_description.label|trans({}, field_description.translationDomain) }}" data-pk="{{ admin.id(object) }}" data-url="{{ url }}" {% endblock %}>
- {{ block('field') }}
- </span>
- {% else %}
- {{ block('field') }}
- {% endif %}
- {% endif %}
- </td>
|