matrix-dimension/web/app/admin/neb/edit/edit.component.html
Ahmad 9dc4e99aca translation
- the traslation feature without the changes from other branches
2020-10-23 13:30:20 +02:00

37 lines
1.7 KiB
HTML

<div *ngIf="isLoading">
<my-spinner></my-spinner>
</div>
<div *ngIf="!isLoading">
<my-ibox boxTitle="go-neb configuration">
<div class="my-ibox-content">
<p>{{'go-neb supports many different types of bots, each of which is listed below. Here you can configure which bots this go-neb instance should use.' | translate}}</p>
<table class="table table-striped table-condensed table-bordered">
<thead>
<tr>
<th>Name</th>
<th>{{'Description' | translate}}</th>
<th class="text-center">{{'Actions' | translate}}</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let bot of nebConfig.integrations trackById">
<td>{{ bot.displayName }}</td>
<td>{{ bot.description }}</td>
<td class="text-right">
<span class="editButton" (click)="editBot(bot)"
*ngIf="bot.isEnabled && hasConfig(bot) && !isUpstream">
<i class="fa fa-pencil-alt"></i>
</span>
<ui-switch [checked]="bot.isEnabled" size="small" [disabled]="isUpdating"
(change)="toggleBot(bot)" *ngIf="!isOverlapping(bot)"></ui-switch>
<ui-switch [checked]="false" size="small" [disabled]="true" *ngIf="isOverlapping(bot)"
ngbTooltip="This bot is handled by another go-neb instance"></ui-switch>
</td>
</tr>
</tbody>
</table>
</div>
</my-ibox>
</div>