Licitator 1.0
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.

7 lines
478 B

5 years ago
  1. {% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
  2. {% block field %}
  3. {% set classId = app.request.query.get('classId') is not null ? app.request.query.get('classId') : 0 %}
  4. {% set parameters = {'mode':'gbp', 'classId': classId, 'userId': object.getId} %}
  5. <a href="{{ path('sonata_admin_dashboard', parameters) }}">{{ object.nombreCompleto }}</a>
  6. <span data-id="{{ object.getId }}" data-workshop="{{classId}}" class="entrepreneur"></span>
  7. {% endblock %}