Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
<div class="chat_modal_wrap"> |
|
|
|
<div class="modal-header"> |
|
<!-- <a class="modal-close-link" ng-click="$close()">Close</a> --> |
|
<h4 class="modal-title">Group Info</h4> |
|
</div> |
|
|
|
<div class="modal-body"> |
|
|
|
<div class="chat_modal_image_wrap pull-left"> |
|
<img |
|
class="chat_modal_image" |
|
my-load-thumb |
|
thumb="chatFull.thumb"/> |
|
</div> |
|
|
|
<div class="chat_modal_info_wrap clearfix"> |
|
<h4 class="chat_modal_header" ng-bind-html="chatFull.chat.rTitle"></h4> |
|
<p class="chat_modal_members_count" ng-if="chatFull.chat.participants_count > 0"> |
|
<ng-pluralize count="chatFull.chat.participants_count" |
|
when="{'0': 'No members', 'one': '1 member', 'other': '{} members'}"> |
|
</ng-pluralize> |
|
</p> |
|
|
|
<!--button class="btn btn-link chat_modal_invite_btn">Add member</button--> |
|
</div> |
|
|
|
<h5 class="chat_modal_members_header">Members</h5> |
|
<div class="chat_modal_members_list"> |
|
|
|
<div class="chat_modal_participant_wrap clearfix" ng-repeat="participant in chatFull.participants.participants"> |
|
<a ng-click="openUser(participant.user_id)" class="chat_modal_participant_photo pull-left"> |
|
<img |
|
class="chat_modal_participant_photo" |
|
my-load-thumb |
|
thumb="participant.userPhoto" |
|
/> |
|
<i class="icon modal_participant_online" ng-show="participant.user.status._ == 'userStatusOnline'"></i> |
|
</a> |
|
<div class="chat_modal_participant_name"> |
|
<a ng-click="openUser(participant.user.id)" ng-bind-html="participant.user.rFullName"></a> |
|
</div> |
|
<div class="chat_modal_participant_status">{{participant.user | userStatus}}</div> |
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |