+ @foreach (var step in _steps.Where(i => i.Index == Value || !i.DeferredLoading))
+ {
+
+
+ @(step.ChildContent)
+
+
+ }
+
+ @if (ButtonTemplate == null)
+ {
+ string buttonWidth = "80px;";
+
+ @if (DisplayPreviousButton)
+ {
+
+ @LabelButtonPreviousValue
+
+ }
+
+
+
+ @if (DisplayNextButton)
+ {
+
+ @LabelButtonNextValue
+
+ }
+ else
+ {
+
+ @LabelButtonDoneValue
+
+ }
+ }
+ else
+ {
+ @ButtonTemplate(Value)
+ }
+