@if (currStep == CompileStep.Template) { @foreach (var item in IN_TemplateDTOList) { string colorClass = ""; @if (SelTemplateDTO != null && item.Index == SelTemplateDTO.Index) colorClass = "table-success"; else colorClass = ""; }
# Image Description
@item.Index @item.Description
@* *@ } else if (currStep == CompileStep.Frame) {
Dimension
@foreach (FrameDimension dimension in m_Frame.DimensionList) {
@dimension.nIndex @dimension.sName
}
Joints frame
@foreach (Joint joint in m_Frame.JointList) {
}
@if (m_SashList.Count == 0) {
Bottom rail
Quantity
}
} else if (currStep == CompileStep.Split) {
@foreach (var item in SplitList) {
Number
@foreach (var dim in item.SplitPositionList) {
Altezza area inferiore
}
} @* *@
} else if (currStep == CompileStep.Sash) {
@foreach (var item in SashList) {
Number
Orientation
@foreach (SashDimension sash in item.SashList) {
@if(item.SashList.Count == 1) {
Opening
} else {
Sash opening @(item.SashList.IndexOf(sash) + 1)
}
Dimension
}
Sash joints
@foreach (Joint joint in item.JointList) {
}
Bottom rail
Quantity
} @* *@
} else if (currStep == CompileStep.Fill) {
@foreach (var Fill in FillList) {
@if(FillList.Count == 1) {
Fill
} else {
Fill @(FillList.IndexOf(Fill) + 1)
}
}
}
@if (SelTemplateDTO != null && currStep != CompileStep.Template) {
@outSvg
}