23 lines
958 B
XML
23 lines
958 B
XML
<SS14Window xmlns="https://spacestation14.io"
|
|
Title="{Loc 'cargo-console-order-menu-title'}">
|
|
<BoxContainer Orientation="Vertical">
|
|
<GridContainer Columns="2">
|
|
<Label Text="{Loc 'cargo-console-order-menu-requester-label'}" />
|
|
<LineEdit Name="Requester"
|
|
Access="Public" />
|
|
<Label Text="{Loc 'cargo-console-order-menu-reason-label'}" />
|
|
<LineEdit Name="Reason"
|
|
Access="Public" />
|
|
<Label Text="{Loc 'cargo-console-order-menu-amount-label'}" />
|
|
<SpinBox Name="Amount"
|
|
Access="Public"
|
|
HorizontalExpand="True"
|
|
Value="1" />
|
|
</GridContainer>
|
|
<Button Name="SubmitButton"
|
|
Access="Public"
|
|
Text="{Loc 'cargo-console-order-menu-submit-button'}"
|
|
TextAlign="Center" />
|
|
</BoxContainer>
|
|
</SS14Window>
|