You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% 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 %}
|