Bissap
Bissap

Reputation: 551

Can't use knp_pagination_render with KnpPaginatorBundle

category-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>
[...]

I have this message :

Unable to find template "ForumBundle:Pagination:sliding_bissap.html.twig" in BISSAPForumBundle:F:category-forum.html.twig at line 28.

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*

Upvotes: 1

Views: 774

Answers (1)

Matteo
Matteo

Reputation: 39390

You need to

  1. Renaming ForumBundle with BISSAPForumBundle.

  2. move your template in a folder named BISSAP/ForumBundle/esources/views/Pagination

Hope this help

Upvotes: 1

Related Questions