2018-05-10 11:44:57 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Comment "{{ post.title }}"
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Comment "{{ post.title }}"</h1>
|
|
|
|
<form method="post">
|
|
|
|
<label for="content">Content</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<textarea id="content" name="content"></textarea>
|
|
|
|
<input type="submit" value="Comment" />
|
2018-05-10 11:44:57 +02:00
|
|
|
</form>
|
|
|
|
{% endblock content %}
|
|
|
|
|