{% extends 'base.html.twig' %} {% block title %}پرسش و پاسخ - حسابیکس{% endblock %} {% block body %}

پرسش و پاسخ

سوالات خود را بپرسید و از تجربه دیگران استفاده کنید

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

سوالی یافت نشد

هنوز سوالی در این دسته‌بندی وجود ندارد.

{% if app.user and 'ROLE_CUSTOMER' in app.user.roles %} اولین سوال را بپرسید {% endif %}
{% else %}
{% for question in questions %}
{{ question.votes }}
رای
{{ question.answers|length }}
پاسخ

{{ question.title }}

{% if question.isSolved %} حل شده {% endif %}
{% set content = question.content|markdown|raw %} {% set plainText = content|striptags %} {% if plainText|length > 200 %} {{ plainText|slice(0, 200) }}... {% else %} {{ plainText }} {% endif %}
{% for tagRelation in question.tagRelations %} {{ tagRelation.tag.name }} {% endfor %}
{{ question.author.name }}
{{ question.createdAt|date('Y/m/d H:i') }}
{{ question.views }}
{% endfor %}
{% if totalPages > 1 %}
{% endif %} {% endif %}

تگ‌های محبوب

{% for tag in popularTags %} {{ tag.name }} ({{ tag.usageCount }}) {% endfor %}

آمار

{{ questions|length }}
سوال
{{ popularTags|length }}
تگ
{% endblock %}