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