Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
admpub committed Feb 15, 2025
1 parent 2d99476 commit e7335af
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions template/backend/manager/alert_recipient.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h3>{{"警报接收账号"|$.T}}</h3>
<th style="width:100px"><strong>{{"平台"|$.T}}</strong></th>
<th style="width:160px"><strong>{{"时间"|$.T}}</strong></th>
<th style="width:60px"><strong>{{"状态"|$.T}}</strong></th>
<th style="width:135px" class="text-center"><strong>{{"操作"|$.T}}</strong></th>
<th style="width:80px" class="text-center"><strong>{{"操作"|$.T}}</strong></th>
</tr>
</thead>
<tbody class="no-border-y">
Expand All @@ -53,14 +53,14 @@ <h3>{{"警报接收账号"|$.T}}</h3>
</td>
<td>
<div class="checkbox checkbox-success no-margin-y">
<input id="checkbox-{{$k}}" class="styled switch-disabled" type="checkbox" data-id="{{$v.Id}}"{{if eq $v.Disabled "N"}} checked="checked"{{end}} value="N" /><label for="checkbox-{{$k}}">{{"启用"|$.T}}</label>
<input id="checkbox-{{$k}}" class="styled switch-disabled" type="checkbox" data-id="{{$v.Id}}"{{if eq $v.Disabled `N`}} checked="checked"{{end}} value="N" /><label for="checkbox-{{$k}}">{{"启用"|$.T}}</label>
</div>
</td>
<td class="text-center">
<a class="label label-default" data-toggle="tooltip" title="{{"复制"|$.T}}" href="{{BackendURL}}/manager/alert_recipient_add?copyId={{$v.Id}}"><i class="fa fa-copy"></i></a>
<a class="label label-warning" href="javascript:;" data-toggle="tooltip" title="{{"测试"|$.T}}" onclick="sendTestAlert(this)" data-test-url="{{BackendURL}}/manager/alert_recipient_test?id={{$v.Id}}"><i class="fa fa-refresh"></i></a>
<a class="label label-success" href="{{BackendURL}}/manager/alert_recipient_edit?id={{$v.Id}}" data-toggle="tooltip" title="{{"修改"|$.T}}"><i class="fa fa-pencil"></i></a>
<a class="label label-danger" href="{{BackendURL}}/manager/alert_recipient_delete?id={{$v.Id}}" onclick="return confirm('{{"真的要删除吗"|$.T}}');" data-toggle="tooltip" title="{{"删除"|$.T}}"><i class="fa fa-times"></i></a>
<td class="label-group">
<a class="label label-default" data-toggle="tooltip" title="{{`复制`|$.T}}" href="{{BackendURL}}/manager/alert_recipient_add?copyId={{$v.Id}}"><i class="fa fa-copy"></i></a>
<a class="label label-warning" href="javascript:;" data-toggle="tooltip" title="{{`测试`|$.T}}" onclick="sendTestAlert(this)" data-test-url="{{BackendURL}}/manager/alert_recipient_test?id={{$v.Id}}"><i class="fa fa-refresh"></i></a>
<a class="label label-success" href="{{BackendURL}}/manager/alert_recipient_edit?id={{$v.Id}}" data-toggle="tooltip" title="{{`修改`|$.T}}"><i class="fa fa-pencil"></i></a>
<a class="label label-danger" href="{{BackendURL}}/manager/alert_recipient_delete?id={{$v.Id}}" onclick="return confirm('{{`真的要删除吗?`|$.T}}');" data-toggle="tooltip" title="{{`删除`|$.T}}"><i class="fa fa-times"></i></a>
</td>
</tr>
{{end}}
Expand Down

0 comments on commit e7335af

Please sign in to comment.