장고/점프투장고

댓글 수: {% if question.answer_set.count > 0 %}

나도초딩 2023. 11. 15.

목차

     

    댓글 수: {% if question.answer_set.count > 0 %}

    <span class="text-danger small mx-2">

        {% if question_list %}
            {% for question in question_list %}
            <tr>
                <td>
                    <!-- 번호 = 전체건수 - 시작인덱스 - 현재인덱스 + 1 -->
                    {{ question_list.paginator.count|sub:question_list.start_index|sub:forloop.counter0|add:1 }}
                </td>
                <td>
                    <a href="{% url 'b2b:detail' question.id %}">{{ question.subject }}</a>
                    {% if question.answer_set.count > 0 %}
                    <span class="text-danger small mx-2">{{ question.answer_set.count }}</span>
                    {% endif %}
                </td>
                <td>{{ question.create_date }}</td>
            </tr>
            {% endfor %}

    댓글