mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
731 B
21 lines
731 B
<div class="item" [class.invalid]="isInvalid | async">
|
|
<div class="header drag-handle">
|
|
<i class="icon-drag2 mr-1"></i>
|
|
|
|
<span class="header-text text-decent">Item #{{index + 1}}</span>
|
|
|
|
<button type="button" class="btn btn-link btn-danger item-remove" (click)="removing.emit(); $event.preventDefault()">
|
|
<i class="icon-bin2"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="form-group" *ngFor="let fieldControl of fieldControls">
|
|
<sqx-field-editor
|
|
[form]="form"
|
|
[field]="fieldControl.field"
|
|
[language]="language"
|
|
[languages]="languages"
|
|
[control]="fieldControl.control">
|
|
</sqx-field-editor>
|
|
</div>
|
|
</div>
|