mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
9dc4e99aca
- the traslation feature without the changes from other branches
42 lines
2.0 KiB
HTML
42 lines
2.0 KiB
HTML
<div *ngIf="isLoading">
|
|
<my-spinner></my-spinner>
|
|
</div>
|
|
<div *ngIf="!isLoading">
|
|
<my-ibox boxTitle="{{'Custom bots' | translate}}">
|
|
<div class="my-ibox-content">
|
|
<p>{{'Custom bots give you the ability to add your own bots to Dimension for users to add to their rooms. These bots can\'t have any configuration to them and must be able to accept room invites on their own. All Dimension will do when a user wants to add the bot is invite it to the room.' | translate}}
|
|
</p>
|
|
|
|
<table class="table table-striped table-condensed table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>{{'Name' | translate}}</th>
|
|
<th class="text-center" style="width: 120px;">{{'Actions' | translate}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngIf="!bots || bots.length === 0">
|
|
<td colspan="2"><i>{{'No custom bots.' | translate}}</i></td>
|
|
</tr>
|
|
<tr *ngFor="let bot of bots trackById">
|
|
<td>
|
|
{{ bot.name }}
|
|
<span class="text-muted" style="display: inline-block;">({{ bot.userId }})</span>
|
|
</td>
|
|
<td class="text-center">
|
|
<button type="button" class="btn btn-link btn-sm editButton" (click)="editBot(bot)">
|
|
<i class="fa fa-pencil-alt"></i>
|
|
</button>
|
|
<ui-switch [checked]="bot.isEnabled" size="small" [disabled]="isUpdating"
|
|
(change)="toggleBot(bot)"></ui-switch>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<button type="button" class="btn btn-success btn-sm" (click)="addBot()">
|
|
<i class="fa fa-plus"></i>{{ 'Add custom bot' | translate}}
|
|
</button>
|
|
</div>
|
|
</my-ibox>
|
|
</div>
|