Plume/templates/comments/new.html.tera

16 lines
412 B
Plaintext
Raw Normal View History

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