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.
14 lines
533 B
14 lines
533 B
{% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
|
|
{% set disabled = '' %}
|
|
{% if app.user.hasContact(object) %}
|
|
{% set disabled = 'disabled' %}
|
|
{% endif %}
|
|
{% block field %}
|
|
<a href="{{ path('admin_app_greenentrepreneur_contactarAjax',{ 'id': object.id }) }}"
|
|
{{ disabled }} class="btn btn-sm btn-default contact_link" title="{{ 'contact'|trans({}, 'SonataAdminBundle') }}">
|
|
<i class="fa fa-message" aria-hidden="true"></i>
|
|
{{ 'Contact'|trans({}, 'SonataAdminBundle') }}
|
|
</a>
|
|
{% endblock %}
|
|
|
|
|