{% extends 'base.html.twig' %} {% import "/cards/macros/note/factory.html.twig" as NoteFactory %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %} {% if note is defined or actor is defined %}
{% if note is defined and note is not null %} {% set args = { 'type': 'vanilla_full', 'note': note, 'extra': { 'depth': 0 } } %} {{ NoteFactory.constructor(args) }} {% elseif actor is defined and actor is not null %} {% include 'cards/blocks/profile.html.twig' with {'actor': actor} only %} {% endif %}
{% endif %} {% if tags_form is not null %}

{{ label }}

{{ form(tags_form) }} {% endif %}
{% trans %}Go to %type% muting settings{% endtrans %}
{% endblock %}