24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
<div class="card shadow-sm rounded">
|
|
<div class="card-body py-2">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<div class="col d-flex justify-content-center">
|
|
<h5>Area split @(CurrSplittedList.Count > 1 ? (CurrSplittedList.IndexOf(CurrSplitted) + 1) : "")</h5>
|
|
</div>
|
|
<div class="col d-flex justify-content-center">
|
|
<div class="input-group mb-2 justify-content-center">
|
|
<button class="btn btn-outline-secondary btn-sm" @onclick="() => RaiseAddSash(CurrSplitted)">Add Sash</button>
|
|
</div>
|
|
</div>
|
|
<div class="col d-flex justify-content-center">
|
|
@for (int j = 0; j < CurrSashList.Count; j++)
|
|
{
|
|
int Index = j;
|
|
<div class="input-group mb-2 justify-content-center">
|
|
<button class="btn btn-outline-secondary btn-sm" @onclick="() => RaiseCopySash(CurrSplitted,Index)">Copy Sash @(CurrSashList.Count == 1 ? "" : (Index + 1))</button>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|