Plume/templates/comments/new.tera

16 lines
337 B
Plaintext
Raw Normal View History

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>
<textarea id="content" name="content"></textarea>
<input type="submit" value="Comment" />
2018-05-10 11:44:57 +02:00
</form>
{% endblock content %}