12 lines
277 B
Twig
12 lines
277 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Edit Comment{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Edit Comment</h1>
|
|
|
|
<turbo-frame id="comment_{{ comment.id }}">
|
|
{{ include('post/_form.html.twig', {'button_label': 'Update'}) }}
|
|
</turbo-frame>
|
|
{% endblock %}
|