templates/Front/Scholar/Card/teacher-channel.html.twig line 1

Open in your IDE?
  1. {% extends 'Front/Scholar/Card/teacher.html.twig' %}
  2. {% block content_header_teacher %}
  3.     {% set countAnswers = teacher|getCountAnswers(channel) %}
  4.     {% if teacher.roleDescription is not null and countAnswers > 0 %}
  5.         <p>
  6.             {{ teacher.roleDescription }} ยท {{ 'teacher.answers'|trans({'%count%': countAnswers}) }}
  7.         </p>
  8.     {% elseif teacher.roleDescription is not null and countAnswers == 0 %}
  9.         <p>
  10.             {{ teacher.roleDescription }}
  11.         </p>
  12.     {% elseif countAnswers > 0 %}
  13.         <p>
  14.             {{ 'teacher.answers'|trans({'%count%': countAnswers}) }}
  15.         </p>
  16.     {% endif %}
  17. {% endblock %}