matrix-dimension/web/app/riot/riot.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

10 lines
No EOL
378 B
HTML

<div *ngIf="error">
<p class="text-danger">{{ error }}</p>
</div>
<div *ngIf="!error">
<h3>Manage Integrations</h3>
<p>Turn on anything you like. If an integration has some special configuration, it will have a configuration icon next to it.</p>
<div class="integration-container">
<my-bot *ngFor="let bot of bots" [bot]="bot"></my-bot>
</div>
</div>