{% extends 'base.html.twig' %} {% block title %}{{ question.title }} - پرسش و پاسخ{% endblock %} {% block body %}
{{ question.votes }}

{{ question.title }}

{% if question.isSolved %} حل شده {% endif %}
{{ question.content|markdown|raw }}
{% for tagRelation in question.tagRelations %} {{ tagRelation.tag.name }} {% endfor %}
{{ question.author.name }} {{ question.createdAt|date('Y/m/d H:i') }} {{ question.views }} بازدید

پاسخ‌ها {{ totalAnswers }}

{% if app.user and 'ROLE_CUSTOMER' in app.user.roles %} پاسخ دهید {% else %} ورود برای پاسخ دادن {% endif %}
{% if answers is empty %}

هنوز پاسخی داده نشده

اولین کسی باشید که به این سوال پاسخ می‌دهد.

{% else %} {% for answer in answers %}
{{ answer.votes }}
{{ answer.content|markdown|raw }}
{% if answer.isAccepted %} پاسخ پذیرفته شده {% endif %}
{{ answer.author.name }} {{ answer.createdAt|date('Y/m/d H:i') }}
{% if app.user and app.user == question.author and not answer.isAccepted %} {% endif %}
{% endfor %} {% if totalPages > 1 %} {% endif %} {% endif %}
{% endblock %}