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