|
|
|
@@ -39,6 +39,11 @@ |
|
|
|
<span class="position-absolute bi bi-pencil p-2" data-type="user-tool" data-action="edit" |
|
|
|
(click)="openModalEditPartner()"></span> |
|
|
|
</div> |
|
|
|
<div class="card-body row" *ngIf="partner.description"> |
|
|
|
<div class="col-12"> |
|
|
|
<p [innerHTML]="apiConverter.getSafeLongtext(partner.description)"></p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="spt-container"> |
|
|
|
@@ -82,31 +87,6 @@ |
|
|
|
</mat-paginator> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="spt-container"> |
|
|
|
<div class="posts"> |
|
|
|
<div class="d-flex justify-content-between align-items-start"> |
|
|
|
<h2>Kunden Details</h2> |
|
|
|
</div> |
|
|
|
<div class="card mb-3"> |
|
|
|
<div class="card-body"> |
|
|
|
<div> |
|
|
|
<h3>Viel Platz für Freitext</h3> |
|
|
|
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt |
|
|
|
ut |
|
|
|
labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo |
|
|
|
dolores |
|
|
|
et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |
|
|
|
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt |
|
|
|
ut |
|
|
|
labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo |
|
|
|
dolores |
|
|
|
et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit |
|
|
|
amet.</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="spt-container"> |
|
|
|
<div class="spt-accordion"> |
|
|
|
<div class="d-flex justify-content-between align-items-start"> |
|
|
|
@@ -154,8 +134,10 @@ |
|
|
|
<div class="d-flex justify-content-end mt-1"> |
|
|
|
<span *ngIf="task.taskNotes?.length !== 0" role="button" class="badge bg-secondary p-2 me-2" |
|
|
|
(click)="showTaskNotes(task)"> |
|
|
|
<ng-container *ngIf="task.id && taskNotesVisibility.get(task.id)">{{ 'basic.hide-comments' | translate }}</ng-container> |
|
|
|
<ng-container *ngIf="task.id && !taskNotesVisibility.get(task.id)">{{ 'basic.show-comments' | translate }}</ng-container> |
|
|
|
<ng-container |
|
|
|
*ngIf="task.id && taskNotesVisibility.get(task.id)">{{ 'basic.hide-comments' | translate }}</ng-container> |
|
|
|
<ng-container |
|
|
|
*ngIf="task.id && !taskNotesVisibility.get(task.id)">{{ 'basic.show-comments' | translate }}</ng-container> |
|
|
|
</span> |
|
|
|
<span role="button" class="badge bg-secondary p-2" |
|
|
|
(click)="openModalNewTaskNote(task)">{{ 'basic.comment-it' | translate }}</span> |
|
|
|
@@ -212,8 +194,10 @@ |
|
|
|
<div class="d-flex justify-content-end mt-1"> |
|
|
|
<span *ngIf="post.comments?.length !== 0" role="button" class="badge bg-secondary p-2 me-2" |
|
|
|
(click)="showComments(post)"> |
|
|
|
<ng-container *ngIf="post.id && commentsVisibility.get(post.id)">{{ 'basic.hide-comments' | translate }}</ng-container> |
|
|
|
<ng-container *ngIf="post.id && !commentsVisibility.get(post.id)">{{ 'basic.show-comments' | translate }}</ng-container> |
|
|
|
<ng-container |
|
|
|
*ngIf="post.id && commentsVisibility.get(post.id)">{{ 'basic.hide-comments' | translate }}</ng-container> |
|
|
|
<ng-container |
|
|
|
*ngIf="post.id && !commentsVisibility.get(post.id)">{{ 'basic.show-comments' | translate }}</ng-container> |
|
|
|
</span> |
|
|
|
<span role="button" class="badge bg-secondary p-2" |
|
|
|
(click)="openModalNewComment(post)">{{ 'basic.comment-it' | translate }}</span> |
|
|
|
|