Compare commits

..

7 Commits

Author SHA1 Message Date
18af1861d1 gitlab config und task component 2022-05-07 01:45:20 +02:00
bd6b5fc216 gitlab config 2022-05-07 01:43:51 +02:00
6cb4c358db Merge branch 'editFeature' into main 2022-05-07 01:22:26 +02:00
4b2d52bdae Merge branch 'noEdit' into main 2022-05-07 01:14:51 +02:00
Administrator
2da30e6f57 Update .gitlab-ci.yml file 2022-05-06 23:10:50 +00:00
Administrator
098dabb31b Update .gitlab-ci.yml file 2022-05-06 23:10:44 +00:00
b8a6e365d1 No Edit 2022-05-01 23:10:17 +02:00

View File

@ -1,16 +1,8 @@
<mat-card class="task">
<mat-card-header class="header">
<mat-card-title class="title">{{this.taskObj.name}}</mat-card-title>
<mat-card-subtitle class="sub">{{this.date}}</mat-card-subtitle>
</mat-card-header>
<hr>
<mat-card-content class="content">
<p>
{{this.taskObj.description}}
</p>
</mat-card-content>
<mat-card-actions>
<button (click)="delete(this.taskObj.id)" mat-mini-fab class="edit-btn"><mat-icon>delete</mat-icon></button>
<button (click)="openDialog()" mat-mini-fab class="edit-btn"><mat-icon>edit</mat-icon></button>
</mat-card-actions>
</mat-card>
<!-- Terminal -->
<div class="terminal" >
<pre>{{this.taskObj.name}}</pre>
<pre>{{this.taskObj.id}}</pre>
<pre>{{this.taskObj.description}}</pre>
<pre>{{this.taskObj.state}}</pre>
<pre>{{this.taskObj.date}}</pre>
</div>