Plume/templates/comments/new.html.tera

16 lines
416 B
Plaintext
Raw Normal View History

2018-05-10 09:44:57 +00:00
{% extends "base" %}
{% block title %}
2018-06-17 15:26:15 +00:00
{{ "Comment \"{{ post }}\"" | _(post=post.title) }}
2018-05-10 09:44:57 +00:00
{% endblock title %}
{% block content %}
2018-06-17 15:26:15 +00:00
<h1>{{ "Comment \"{{ post }}\"" | _(post=post.title) }}</h1>
2018-05-10 09:44:57 +00:00
<form method="post">
2018-06-17 15:26:15 +00:00
<label for="content">{{ "Content" | _ }}</label>
2018-05-10 09:44:57 +00:00
<textarea name="content"></textarea>
2018-06-17 15:26:15 +00:00
<input type="submit" value="{{ "Submit comment" | _ }}"/>
2018-05-10 09:44:57 +00:00
</form>
{% endblock content %}