Plume/templates/comments/new.html.tera
Bat aaf60502ed Fix translations
Remove dulicated messages

Fix quotes in templates
2018-06-17 16:34:25 +01:00

16 lines
412 B
Plaintext

{% extends "base" %}
{% block title %}
{{ 'Comment "{{ post }}"' | _(post=post.title) }}
{% endblock title %}
{% block content %}
<h1>{{ 'Comment "{{ post }}"' | _(post=post.title) }}</h1>
<form method="post">
<label for="content">{{ "Content" | _ }}</label>
<textarea name="content"></textarea>
<input type="submit" value="{{ "Submit comment" | _ }}"/>
</form>
{% endblock content %}