openlucius-2.0.0-alpha3/modules/core/ol_main/templates/comment-item.html.twig
modules/core/ol_main/templates/comment-item.html.twig
<!--- Comment-->
<div class="card ol-card">
<a id="comment_id_{{ vars.comment_id }}"></a>
<div class="card-header comment">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between align-items-center">
<div class="mr-2">
<img class="rounded-circle" src="{{ vars.user_picture }}" alt="" height="35">
</div>
<div class="ml-2">
<div class="m-0"><a href="/user/{{ vars.user_id }}/profile">{{ vars.username }}</a>
<span class="badge badge-light comment"><i class="fas fa-clock"></i> {{ vars.created }} </span>
{% if vars.privacy %}
<span class="badge badge-primary comment"><i class="fas fa-lock"></i> {{ 'Private comment: only visible for you and questioner'}} </span>
{% endif %}
</div>
</div>
</div>
{% if vars.owner == TRUE %}
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="ol-drop2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="ol-drop2">
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editCommentModal_{{ vars.comment_id }}">{{ 'Edit'|t }}</a>
</div>
</div>
</div>
{% endif %}
</div>
</div>
<div class="card-body comment">
<p class="comment">{{ vars.body|raw }}</p>
</div>
{% if vars.files %}
<div class="files_wrapper comment">
{{ vars.files|raw }}
</div>
{% endif %}
{% if vars.like_button %}
<!-- Footer -->
<div class="card-footer comment">
<div class="like-wrapper">
{{ vars.like_button }}
</div>
</div>
{% endif %}
</div>
<!-- / Comment -->
{% if vars.owner == TRUE %}
<!-- Modal edit comment -->
<div class="modal fade" id="editCommentModal_{{ vars.comment_id }}" role="dialog" aria-labelledby="editMessageLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">{{ 'Edit comment:'|t }} {{ vars.name }}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
{{ vars.edit_form }}
</div>
</div>
</div>
</div>
<!-- / Modal edit comment -->
{% endif %}
{#
<li class="media">
<a id="comment_id_{{ vars.comment_id }}"></a>
<a href="#" class="pull-left">
<img src="{{ vars.user_picture }}" alt="" class="rounded-circle">
</a>
<div class="media-body">
<span>{{ vars.username }}</span>
<span class="text-muted"> {{ vars.userstatus }}</span>
<span class="text-muted pull-right"><small class="text-muted"> {{ vars.created }}</small></span>
<p>
{{ vars.comment_body|raw }}
</p>
</div>
{% if vars.owner == TRUE %}
<div>
<div class="dropdown">
<button class="btn btn-link dropdown-toggle" type="button" id="ol-drop2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="ol-drop2">
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editCommentModal_{{ vars.comment_id }}">Edit</a>
</div>
</div>
</div>
{% endif %}
</li>
{% if vars.files %}
<div class="files_wrapper">
{{ vars.files|raw }}
</div>
{% endif %}
#}
