项目文件夹

文件
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 行
2.3 KiB
Go

此文件含有模棱两可的 Unicode 字符
此文件含有可能会与其他字符混淆的 Unicode 字符。 如果您是想特意这样的,可以安全地忽略该警告。 使用 Escape 按钮显示他们。
<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>