{% extends 'app/base_dashboard.html' %} {% load static %} {% load humanize %} {% block title %} Komentar | Digipus {% endblock %} {% block stylesheets %} {% endblock %} {% block content %}
profile-picture

{{user.name}}

{{numb_of_materi}}

Materi

{{numb_of_comments}}

Komentar

{% if comments %}

Komentar

{% for comment in comments %}
{% if comment.user != Null %} {% if not comment.user.default_profile_picture %} profile-picture {% else %} profile-picture {% endif %} {% else %} {% endif %}

{{comment.user.name}}

{{ comment.timestamp|naturaltime }}

Lihat Materi

{{comment.comment}}

{% endfor %} {% else %}

Belum ada komentar

{% endif %}
{% endblock %}