diff options
Diffstat (limited to 'public/admin/view/template/marketplace/marketplace_comment.twig')
-rw-r--r-- | public/admin/view/template/marketplace/marketplace_comment.twig | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/public/admin/view/template/marketplace/marketplace_comment.twig b/public/admin/view/template/marketplace/marketplace_comment.twig new file mode 100644 index 0000000..98c2c9a --- /dev/null +++ b/public/admin/view/template/marketplace/marketplace_comment.twig @@ -0,0 +1,46 @@ +{% if comments %} +{% for comment in comments %} +<div id="comment{{ comment.extension_comment_id }}" class="media"> + <div class="media-left"><img src="{{ comment.image }}" alt="{{ comment.member }}" title="{{ comment.member }}" class="media-object" /></div> + <div class="media-body"> + <p class="media-heading">{{ comment.member }} <span>{{ comment.date_added }}</span></p> + <p>{{ comment.comment }}</p> + <div class="reply"> + <div> {% if comment.reply %} + + {% for reply in comment.reply %} + <div class="media"> + <div class="media-left"><img src="{{ reply.image }}" alt="{{ reply.member }}" title="{{ reply.member }}" class="media-object" /></div> + <div class="media-body"> + <p class="media-heading">{{ reply.member }} <span>{{ reply.date_added }}</span></p> + <p>{{ reply.comment }}</p> + </div> + </div> + {% endfor %} + + {% if comment.next %} + <div class="text-center"><a href="{{ comment.next }}" class="btn btn-block">see more replies...</a></div> + {% endif %} + + {% endif %} <a href="{{ comment.refresh }}" class="reply-refresh hide">refresh</a> </div> + </div> + <p class="text-right"> + <button type="button" class="btn btn-link btn-xs">{{ button_reply }}</button> + </p> + <div class="reply-input-box" style="display: none;"> + <div class="media"> + <div class="media-body"> + <div class="form-group"> + <label for="input-comment{{ comment.extension_comment_id }}">Leave your comment</label> + <textarea name="comment" placeholder="Write your comment here..." id="input-comment{{ comment.extension_comment_id }}" class="form-control"></textarea> + </div> + <div class="text-right"><a href="{{ comment.add }}" class="btn btn-primary btn-sm">Comment</a></div> + </div> + </div> + </div> + </div> +</div> +</div> +{% endfor %} <br /> +<div class="text-center">{{ pagination }}</div> +{% endif %}
\ No newline at end of file |