Skip to content
Snippets Groups Projects
Commit 977be843 authored by Albert Bruns's avatar Albert Bruns
Browse files

OZG-7473-7885 ui ux

parent 8d29bfd6
No related branches found
No related tags found
1 merge request!104Administration: Neu hinzugefügte Felder für Statistik speichern
<form [formGroup]="formService.form"> <form [formGroup]="formService.form">
<ng-container [formArrayName]="AggregationMappingFormService.FIELD_MAPPINGS"> <ng-container [formArrayName]="AggregationMappingFormService.FIELD_MAPPINGS">
<ng-container [formGroupName]="index"> <ng-container [formGroupName]="index">
<div class="flex w-full flex-col gap-2 mt-4 bg-gray-100 p-4 rounded-md"> <div class="flex w-full flex-col gap-2 mt-4 bg-background-100 p-4 rounded-md">
<div class="flex flex-row items-center justify-between"> <div class="flex flex-row items-center justify-between">
<p class="text-md mb-2 block font-medium text-text">Datenfeld</p> <p class="text-md mb-2 block font-medium text-text">Datenfeld</p>
<ods-button <ods-button
......
<ods-list-item [path]="aggregationMapping | toResourceUri" [attr.data-test-id]="aggregationMapping.name | convertForDataTest"> <ods-list-item [path]="aggregationMapping | toResourceUri" [attr.data-test-id]="aggregationMapping.name | convertForDataTest">
<dl class="flex-1 font-semibold"> <dl class="flex w-full">
<div class="w-1/2">
<dt class="sr-only">Name</dt> <dt class="sr-only">Name</dt>
<dd data-test-class="fullname">{{ aggregationMapping.name }}</dd> <dd class="font-semibold" data-test-class="fullname">{{ aggregationMapping.name }}</dd>
</dl> </div>
<!-- Remove null safe check operator after backend provides correct data. --> <!-- Remove null safe check operator after backend provides correct data. -->
<div class="flex-1 flex-wrap"> <div class="flex-wrap w-1/2">
<dl>
<dt class="sr-only">Formengine</dt> <dt class="sr-only">Formengine</dt>
<dd>{{ aggregationMapping.formIdentifier?.formEngineName }}</dd> <dd>{{ aggregationMapping.formIdentifier?.formEngineName }}</dd>
</dl>
<dl>
<dt class="sr-only">Form ID</dt> <dt class="sr-only">Form ID</dt>
<dd>{{ aggregationMapping.formIdentifier?.formId }}</dd> <dd>{{ aggregationMapping.formIdentifier?.formId }}</dd>
</dl>
</div> </div>
</dl>
</ods-list-item> </ods-list-item>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment