But I have the error :Template "list_actions.php.twig" cannot be used as a trait in "List/ResultsBuilderTemplate.php.twig".I do not understand what the problem is.
What am I doing wrong ?
Cédric Lombardot
unread,
Jan 27, 2014, 9:31:42 AM1/27/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Symfony2 Admingenerator bundles support for users
Hello,
Your list_action is space : {{ block('list_actions') }} should be a
block declaration ! You can only use traits twigs wich are blocks
eg :
my_pagination.php.twig :
{% block do_my_pagination %}
HERE IS THE WORLD
{% endblock %}
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to symfony2adm...@googlegroups.com
I try this :
{% use 'nbresults.php.twig' %} {% use 'thead.php.twig' %} {% use 'tbody.php.twig' %}
{% use 'batch_actions.php.twig' %} {% use 'list_actions.php.twig' with list_actions as list_actions_top %} {% use 'list_actions.php.twig' with list_actions as list_actions_bot %}
But I have this error : The block 'generic_actions' has already been defined line 19 in
Admingenerated/MyBundle/Resources/views/UserList/results.html.twig
at line 337
So I change my list_actions template like that : {% use 'paginator.php.twig' %} {% use 'generic_actions.php.twig' with generic_actions as test %} {% use 'batch_actions.php.twig' %}
{% block list_actions %}
<div class="form-actions list-actions"> {% if batch_actions is defined and batch_actions|length > 0 %} <div id="batch_actions" class="pull-left btn-toolbar"> {{ block('batch_actions') }} </div> {% endif -%}
{% if actions is defined and actions|length > 0 %} <div id="generic_actions" class="pull-left btn-toolbar">