无法将 knp_pagination_render 与 KnpPaginatorBundle 一起使用
Can't use knp_pagination_render with KnpPaginatorBundle
类别-forum.html.twig :
{% extends "BISSAPForumBundle::layout-forum.html.twig" %}
[...]
<section class="paginationContent">
<a class="btn btn-primary right-flt creatThread" href="#">Créer un sujet</a>
<div class="navigation">
{% set test = [88,99] %}
{{ knp_pagination_render(listTopics,'ForumBundle:Pagination:sliding_bissap.html.twig',test) }}
</div>
</section>
[...]
我有这条消息:
无法在第 28 行的 BISSAPForumBundle:F:category-forum.html.twig 中找到模板 "ForumBundle:Pagination:sliding_bissap.html.twig"。
root@LinuxBissap:/var/www/Symfony/src/BISSAP/ForumBundle/Pagination# ll
total 12
drwxrwxr-x 2 sebastien sebastien 4096 août 21 00:36 ./
drwxrwxrwx 10 root root 4096 août 21 00:36 ../
-rwxrwxrwx 1 sebastien sebastien 1387 août 21 00:36 sliding_bissap.html.twig*
你需要
用 BISSAPForumBundle
重命名 ForumBundle。
将您的模板移动到名为 BISSAP/ForumBundle/esources/views/Pagination
的文件夹中
希望对您有所帮助
类别-forum.html.twig :
{% extends "BISSAPForumBundle::layout-forum.html.twig" %}
[...]
<section class="paginationContent">
<a class="btn btn-primary right-flt creatThread" href="#">Créer un sujet</a>
<div class="navigation">
{% set test = [88,99] %}
{{ knp_pagination_render(listTopics,'ForumBundle:Pagination:sliding_bissap.html.twig',test) }}
</div>
</section>
[...]
我有这条消息:
无法在第 28 行的 BISSAPForumBundle:F:category-forum.html.twig 中找到模板 "ForumBundle:Pagination:sliding_bissap.html.twig"。
root@LinuxBissap:/var/www/Symfony/src/BISSAP/ForumBundle/Pagination# ll
total 12
drwxrwxr-x 2 sebastien sebastien 4096 août 21 00:36 ./
drwxrwxrwx 10 root root 4096 août 21 00:36 ../
-rwxrwxrwx 1 sebastien sebastien 1387 août 21 00:36 sliding_bissap.html.twig*
你需要
用
BISSAPForumBundle
重命名 ForumBundle。将您的模板移动到名为
BISSAP/ForumBundle/esources/views/Pagination
的文件夹中
希望对您有所帮助