1

类别-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*
4

1 回答 1

1

你需要

  1. 将 ForumBundle 重命名为BISSAPForumBundle.

  2. 将您的模板移动到一个名为BISSAP/ForumBundle/esources/views/Pagination

希望这有帮助

于 2015-08-21T08:30:36.783 回答