matrix-dimension/web/app/bot/bot.component.html
turt2live 0c51d4424b UI for simple matrix.org bots
Part of #11

Needs actual scalar integration
2017-05-27 01:27:36 -06:00

15 lines
557 B
HTML

<div class="bot">
<img [src]="bot.avatar" class="avatar">
<div class="title">
<b>{{ bot.name }}</b>
<div style="display: flex;">
<div class="switch">
<ui-switch [checked]="bot.isEnabled" size="small" [disabled]="updating" (change)="update()"></ui-switch>
</div>
<div class="toolbar">
<i class="fa fa-question-circle text-info" ngbTooltip="{{bot.about}}" *ngIf="bot.about"></i>
</div>
</div>
</div>
<div style="clear: both;"></div>
</div>