wip delete comment

This commit is contained in:
2022-01-04 12:07:37 +01:00
parent 5fead5b467
commit 68ea0a1086
2 changed files with 53 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{% extends "@ChillPerson/Person/layout.html.twig" %}
{% set person = activity.person %}
{% block title 'Remove comment'|trans %}
{% block personcontent %}
{{ include('@ChillMain/Util/confirmation_template.html.twig',
{
'title' : 'Remove comment'|trans,
'confirm_question' : 'Are you sure you want to remove comment ?'|trans,
'cancel_route' : 'chill_activity_activity_list',
'cancel_parameters' : { 'person_id' : activity.person.id, 'id' : activity.id },
'form' : delete_form
} ) }}
{% endblock %}