mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16e28019bc
This adds #11
15 lines
561 B
HTML
15 lines
561 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]="bot.isBroken" (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> |