mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-25 21:11:01 +00:00
aaf60502ed
Remove dulicated messages Fix quotes in templates
15 lines
412 B
Text
15 lines
412 B
Text
{% 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 %}
|
|
|