| <!------------------------------------------------------------------------------- |
| * Copyright (c) 2020 Contributors to the Eclipse Foundation |
| * |
| * See the NOTICE file(s) distributed with this work for additional |
| * information regarding copyright ownership. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License 2.0 which is available at |
| * http://www.eclipse.org/legal/epl-2.0 |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| --------------------------------------------------------------------------------> |
| |
| <div class="dashboard-header"> |
| |
| <span class="dashboard-header-title">Stellungnahmen öffentlicher Belange - Detailansicht</span> |
| |
| <div class="dashboard-header-actions"> |
| |
| <a #homeAnchor class="openk-button openk-info" routerLink="/"> |
| <mat-icon>arrow_back</mat-icon> |
| Zurück zur Übersicht |
| </a> |
| |
| </div> |
| </div> |
| |
| <app-card |
| *ngIf="(statement$ | async) != null" |
| [appTitle]="(id$ | async) + ' ' + (statement$ | async)?.title" |
| class="statement-details"> |
| |
| <span *ngIf="(statement$ | async)?.dueDate"> |
| Frist: {{(statement$ | async)?.dueDate}} |
| </span> |
| |
| </app-card> |