HEX
Server: LiteSpeed
System: Linux php-prod-3.spaceapp.ru 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: xnsbl7462 (1008)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/retile.ru/public_html/admin/view/template/marketplace/marketplace_comment.twig
{% 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 %}