{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% load social_tags %} {% block title %} {% trans "Post" %} - {{ post.author.get_full_name|default:post.author.username }} {% endblock title %} {% block extrastyle %} {% endblock extrastyle %} {% block content %}
{% trans "Seja o primeiro a comentar!" %}
{{ comment.author.get_full_name|default:comment.author.username }}{% verified_badge comment.author "12px" %} {% if comment.author == post.author %} {% trans "Autor" %} {% endif %}
{{ comment.created_at|timesince }} {% trans "atrás" %}{{ comment.content|process_content|linebreaks }}
{{ reply.author.get_full_name|default:reply.author.username }}{% verified_badge reply.author "10px" %} {% if reply.author == comment.author %} {% trans "Respondeu" %} {% elif reply.author == post.author %} {% trans "Autor" %} {% endif %}
{{ reply.created_at|timesince }} {% trans "atrás" %}{{ reply.content|process_content }}
{{ reply_to_reply.author.get_full_name|default:reply_to_reply.author.username }}{% verified_badge reply_to_reply.author "8px" %} {% if reply_to_reply.author == reply.author %} {% elif reply_to_reply.author == comment.author %} {% trans "Respondeu" %} {% elif reply_to_reply.author == post.author %} {% trans "Autor" %} {% endif %}
{{ reply_to_reply.created_at|timesince }} {% trans "atrás" %}{{ reply_to_reply.content|process_content }}