You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
478 B
8 lines
478 B
{% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
|
|
|
|
{% block field %}
|
|
{% set classId = app.request.query.get('classId') is not null ? app.request.query.get('classId') : 0 %}
|
|
{% set parameters = {'mode':'gbp', 'classId': classId, 'userId': object.getId} %}
|
|
<a href="{{ path('sonata_admin_dashboard', parameters) }}">{{ object.nombreCompleto }}</a>
|
|
<span data-id="{{ object.getId }}" data-workshop="{{classId}}" class="entrepreneur"></span>
|
|
{% endblock %}
|