template_user_list.html 1.25 KB
Newer Older
1
<ul class="p-0 chat_make_room_list" style="margin-top: 0px !important;border-top: none !important;">
Lee Munkyeong committed
2
  {{#userList}}
3
  <li class="d-flex align-items-center">
Lee Munkyeong committed
4
    <a href="javascript:return false;" onclick="CHAT_UI.makeNameCard({{shopMemberId}})" style="width: 100%;">
5 6
      <div class="chat_item d-flex flex-row align-items-center">
        <div class="chat_item_l">
7
          <div class="thumbnail">
Lee Munkyeong committed
8
            <div class="img_wrap"><img src="{{profileUrl}}" onError="this.src='./img/noImage.png'"/></div>
9 10 11 12 13
          </div>
        </div>
        <div class="chat_item_m px-0">
          <div class="d-flex flex-column">
            <div class="chat_item_t">
Lee Munkyeong committed
14
              <span class="chat_item_ttl">{{shopMemberName}}</span>
15 16 17 18 19 20 21
            </div>
          </div>
        </div>
      </div>
    </a>
    <div class="chat_item_r">
      <div class="d-flex flex-column">
Lee Munkyeong committed
22
        {{#isFavorite}}
Lee Munkyeong committed
23
        <span class="star active shopmember_{{shopMemberId}}" onclick="CHAT_UI.favoriteUserChange({{shopMemberId}},this)"></span>
Lee Munkyeong committed
24 25
        {{/isFavorite}}
        {{^isFavorite}}
Lee Munkyeong committed
26
        <span class="star disable shopmember_{{shopMemberId}}" onclick="CHAT_UI.favoriteUserChange({{shopMemberId}},this)"></span>
Lee Munkyeong committed
27
        {{/isFavorite}}
28 29 30
      </div>
    </div>
  </li>
Lee Munkyeong committed
31
  {{/userList}}
32
</ul>