You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
738 B
20 lines
738 B
<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>
|
|
|