16 lines
416 B
Plaintext
16 lines
416 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 %}
|
|
|