Skip to content
Snippets Groups Projects
Commit 0177e688 authored by Thomas Lenz's avatar Thomas Lenz
Browse files

Include style from participant-room-view into creator-room-view

parent 09bb1cee
Branches
Tags
No related merge requests found
<div *ngIf="room" fxLayout="column" fxLayoutAlign="center" fxLayoutGap="20px" fxFill>
<div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill>
<div fxLayout="row" fxLayoutAlign="center">
<div fxLayoutGap="20px">
<mat-list-item>Room: {{room.name}}</mat-list-item>
<mat-list-item>
<button mat-raised-button color="primary" style="width: 150px">Create content</button>
</mat-list-item>
<mat-list-item>
<button mat-raised-button color="primary" style="width: 150px">Contents</button>
</mat-list-item>
<mat-list-item>
<button mat-raised-button color="primary" style="width: 150px">Comments</button>
</mat-list-item>
<mat-list-item>
<button mat-raised-button color="warn" style="width: 150px">Delete room</button>
</mat-list-item>
<mat-list-item>
<button mat-raised-button color="primary" style="width: 150px" (click)="goBack()">Go back</button>
</mat-list-item>
</div>
<mat-card>
<mat-card-header>
<mat-card-title><h3 class="subheading-2">{{ room.name }}</h3></mat-card-title>
<mat-card-subtitle>{{ room.id }}</mat-card-subtitle>
</mat-card-header>
<mat-divider></mat-divider>
<mat-card-content>
<p>
{{ room.description }}
</p>
</mat-card-content>
<mat-divider></mat-divider>
<mat-card-actions>
<button mat-button color="primary" matTooltip="Create new content">
Create content
</button>
<button mat-button color="primary" matTooltip="See contents">
Contents
</button>
<button mat-button color="primary" matTooltip="See room comments">
Comments
</button>
<button mat-button color="warn" matTooltip="Delete selected room">
Delete room
</button>
<button mat-button color="primary" matTooltip="Go back to last page">
Go back
</button>
</mat-card-actions>
</mat-card>
</div>
</div>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment