{% extends "dashboard/base.html" %} {% load static %} {% block content %}
{% if request.user.profile_picture %} {{ request.user.username }} {% else %}
{% endif %}
{% for doubt in doubts %}
{% if doubt.user.profile_picture %} {{ doubt.user.username }} {% else %}
{% endif %}

{{ doubt.user.username }}

{{ doubt.created_at|timesince }} ago

{{ doubt.class_level.name }} {{ doubt.subject.name }} {% if doubt.chapter %} {{ doubt.chapter.title }} {% endif %}

{{ doubt.title }}

{% if doubt.content %}

{{ doubt.content }}

{% endif %} {% if doubt.post_type == 'image' %} {% for image in doubt.images.all %}
Doubt image {% if image.caption %}

{{ image.caption }}

{% endif %}
{% endfor %} {% elif doubt.post_type == 'document' %} {% for doc in doubt.documents.all %}
Download Document {% if doc.description %}

{{ doc.description }}

{% endif %}
{% endfor %} {% elif doubt.post_type == 'link' %} {% for link in doubt.links.all %} {% endfor %} {% endif %}
{% for comment in doubt.comments.all|slice:":3" %}
{% if comment.user.profile_picture %} {{ comment.user.username }} {% else %}
{% endif %}
{{ comment.user.username }} {{ comment.created_at|timesince }} ago

{{ comment.content }}

{% endfor %}
{% if request.user.profile_picture %} {{ request.user.username }} {% else %}
{% endif %}
{% empty %}

No questions found

Be the first one to ask a question!

{% endfor %}
{% if doubts.has_other_pages %}
{% endif %}

Ask a Question

Share your doubt with the community

{% csrf_token %}

Be specific and clear to get better answers

Filter

Filter

{% endblock %} {% block script_link %} {% endblock %}