seferov
seferov

Reputation: 4161

count relations inside loop in twig

I use Symfony2 and twig templating. Think of the Q&A exact same as stackoverflow. There are list of questions with the count of score, answers, views and so on. How to count the answers of the qeustions inside loop in twig? There are OneToMany relation between Question and Answer tables.

{% for question in questions %}
    <li>{{ question.score }}</li>
    <li>{# there should be the count // count($question->getAnswers()) #}</li>
    <li>{{ question.view }}</li>
{% endfor %}

Or if there is any better way to achieve this, I am open to suggestions.

Upvotes: 15

Views: 10644

Answers (1)

Ohas
Ohas

Reputation: 1871

This will print the count:

{{ question.answers|length }}

Upvotes: 31

Related Questions