Actualización
This commit is contained in:
20
main/template/default/portfolio/comment_context.html.twig
Normal file
20
main/template/default/portfolio/comment_context.html.twig
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-10 col-sm-offset-1">
|
||||
<h4>{{ 'ContextForCommentToBeGrade'|get_lang }}</h4>
|
||||
|
||||
<strong>{{ 'PortfolioItemTitleXName'|get_lang|format(item.title) }}</strong>
|
||||
|
||||
<p>{{ item.excerpt }}</p>
|
||||
|
||||
<div class="row">
|
||||
{% for node in comments_path %}
|
||||
{% if loop.index != comments_path|length %}
|
||||
<div class="col-sm-{{ 12 - node.lvl }} col-sm-offset-{{ node.lvl }}">
|
||||
<strong>{{ 'PortfolioCommentFromXUser'|get_lang|format(node.author.completeName) }}</strong>
|
||||
{{ node.content }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user