27 lines
804 B
HTML
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%} |