16 lines
342 B
Plaintext
16 lines
342 B
Plaintext
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
Comment "{{ post.title }}"
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Comment "{{ post.title }}"</h1>
|
|
<form method="post">
|
|
<label for="content">Content</label>
|
|
<textarea name="content"></textarea>
|
|
<input type="submit" value="Submit comment"/>
|
|
</form>
|
|
{% endblock content %}
|
|
|