template_chatroom_user_list.html 332 Bytes
Newer Older
Lee Munkyeong committed
1 2
{{#userList}}
<div class="user_item">
3
  <a href="#" onclick="Namecard.makeNameCard({{shopMemberId}})">
Lee Munkyeong committed
4 5 6 7 8 9 10 11 12
    <div class="d-flex flex-column">
      <div class="img_wrap">
        <img src="{{profileUrl}}" onError="this.src='./img/noImage.png'">
      </div>
      <span>{{shopMemberName}}</span>
    </div>
  </a>
</div>
{{/userList}}