{% extends 'base.html.twig' %} {% import '/cards/note/view.html.twig' as noteView %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %} {% if note is defined or actor is defined %}
{% if note is defined and note is not null %} {{ noteView.macro_note(note, {}) }} {% elseif actor is defined and actor is not null %} {% include 'cards/profile/view.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 %}