extend form to handle inserts for tenant

This commit is contained in:
2021-08-31 17:26:12 +02:00
parent 4f8f0fde9d
commit 5099e4ae63
2 changed files with 27 additions and 3 deletions

View File

@ -60,6 +60,15 @@
<mat-label>IBAN</mat-label>
<input matInput name="iban" [(ngModel)]="tenant.iban"/>
</mat-form-field>
</div><div>
<mat-form-field appearance="outline">
<mat-label>Account ID</mat-label>
<input matInput name="account_id" [readonly]="true" [ngModel]="account.id"/>
</mat-form-field>
<mat-form-field appearance="outline">
<mat-label>Account Description</mat-label>
<input matInput name="account_desc" [readonly]="true" [ngModel]="account.description"/>
</mat-form-field>
</div>
<button type="submit" mat-raised-button color="primary">Speichern</button>
</form>