You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
690 B
34 lines
690 B
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}My amazing blog{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<img src="{% static 'media/' %}{{ post.image_url }}"/>
|
|
|
|
<a href="{{ post.url }}"><h1>{{ post.title }}</h1></a>
|
|
<p>submitted by {{ post.author.username }}</p>
|
|
<p>----Body----</p>
|
|
<p>{{ post.content }}</p>
|
|
<p>----Comments----</p>
|
|
|
|
<form action="{% url 'news:comment' post.id %}" method="post">
|
|
{% csrf_token %}
|
|
|
|
<p>Add comment</p>
|
|
<p>
|
|
<textarea name="body" rows="8" cols="80"></textarea>
|
|
</p>
|
|
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
<ul>
|
|
{% for comment in post.comment_set.all %}
|
|
<li>{{ comment.body }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock content %}
|
|
|