Plankton_Detector/PlanktonDetector/templates/post_details.html
2024-01-04 21:33:13 +01:00

27 lines
804 B
HTML

{%extends 'base.html'%}
{%load static%}
{%block extracss%}
<link rel="stylesheet" href="{% static 'Community/css/post_details.css' %}">
{%endblock extracss%}
{%block content%}
<div class="page-container">
<div class="post">
<div class="title-content">
<p id="title">{{object.title}}</p>
<p id="content">{{object.content}}</p>
</div>
<div class="author">
<p id="author">{{object.author}}</p>
</div>
</div>
<p id="comment-label">Comments:</p>
<div class="comments">
{%for comments in object.comment_set.all%}
<div class="single-comment">
<p id="comment-content">{{comments.content}}</p>
<p id="comment-author">{{comments.author}}</p>
</div>
{%endfor%}
</div>
</div>
{%endblock content%}