_comment_div.html 797 B

1234567891011121314151617181920212223242526
  1. {# section commentaire. prends en parametre un objet Story ou Epic #}
  2. {# l'objet en parametre doit avoir une propriete 'comments' et une propriete 'uuid' #}
  3. {% load martortags %}
  4. <div class="comment-section">
  5. <ul class="alt">
  6. {% for comment in obj.comments.all %}
  7. <li class="flex-col">
  8. <div><h5><i class="fa fa-comment"></i> {{ comment.author }}, le {{ comment.created }}:</h5></b></div>
  9. <div class="comment-display">
  10. {{ comment.content|safe_markdown }}
  11. </div>
  12. </li>
  13. {% endfor %}
  14. </ul>
  15. <form action="{% url 'comment' obj_uuid=obj.uuid %}" method="post" accept-charset="utf-8">
  16. {% csrf_token %}
  17. {{ comment_form.as_p }}
  18. <div class="flex-row flex-end" style="margin-top: 10px;">
  19. <input type="submit">
  20. </div>
  21. </form>
  22. </div>