20 lines
547 B
HTML
20 lines
547 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% if object.title %}
|
|
<h1>{{ object.title }}</h1>
|
|
{% else %}
|
|
<h1>{{ object.user.username }}</h1>
|
|
{% endif %}
|
|
<img width=400 src={{ object.img.url }}/>
|
|
<h2> Comments</h2>
|
|
<ul>
|
|
{% for comment in object.comments.all %}
|
|
<li>{{ comment.user }} - {{ comment.comment }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit", value="Post">
|
|
</form>
|
|
{% endblock content %}
|