deblan.io-murph/templates/blog/comment_admin/field/author.html.twig

13 lines
442 B
Twig

<a href="{{ path('admin_blog_comment_show', {entity: entity.id}) }}" class="font-weight-bold text-body d-block">
{{ entity.author }}
</a>
Dans <a href="{{ path('admin_blog_post_show', {entity: entity.post.id}) }}">{{ entity.post.title }}</a>
{% if entity.parentComment %}
en réponse à
<a href="{{ path('admin_blog_comment_show', {entity: entity.parentComment.id}) }}">
{{ entity.parentComment }}
</a>
{% endif %}