Files
wehub-resource-sync a21fa4e11b
Go / Build (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:30:21 +08:00

50 lines
2.3 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-body">
<div class="page-header">
<h2>关注用户 <small><span class="badge">{{.count}}</span></small></h2>
</div>
{{if eq .count 0}}
<div class="alert alert-info alert-dismissible fade in" role="alert" style="margin-bottom: 0">
<p><i class="glyphicon glyphicon-volume-up"></i> 没有关注任何用户</p>
</div>
{{else}}
<br>
<table class="table">
<thead>
<tr>
<td class="w15p text-left"><strong>用户名</strong></td>
<td class="text-left"><strong>姓名</strong></td>
<td class="text-left"><strong>职位</strong></td>
<td class="w17p text-left"><strong>邮箱</strong></td>
<td class="w11p text-left"><strong>座机</strong></td>
<td class="w11p text-left"><strong>手机</strong></td>
<td class="w11p text-left"><strong>IM</strong></td>
<td class="w8p center"><strong>操作</strong></td>
</tr>
</thead>
<tbody>
{{range $user := .users}}
<tr class="space-list">
<td>
<strong><a href="/user/info?user_id={{$user.user_id}}">{{$user.username}} </strong><span class="text text-primary"><i class="glyphicon glyphicon-new-window"></i></span> </a>
</td>
<td>{{$user.given_name}}</td>
<td>{{$user.position}}</td>
<td>{{$user.email}}</td>
<td>{{$user.phone}}</td>
<td>{{$user.mobile}}</td>
<td>{{$user.im}}</td>
<td class="center">
<a onclick="Common.ajaxSubmit('/follow/cancel?follow_id={{$user.follow_id}}&user_id={{$user.user_id}}')"><i class="glyphicon glyphicon-heart"></i></a>
</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
</div>
<div class="panel-footer">
</div>
</div>
</div>