mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 18:18:39 +00:00
Update ProjectLighthouse.Servers.Website/Pages/SlotSettingsPage.cshtml
Co-authored-by: Josh <josh@slendy.pw>
This commit is contained in:
parent
4f3c284f15
commit
2967fc7f48
1 changed files with 4 additions and 4 deletions
|
@ -61,19 +61,19 @@ function onSubmit(){
|
||||||
<textarea name="description" id="description" spellcheck="false" placeholder="Description">@HttpUtility.HtmlDecode(Model.Slot.Description)</textarea>
|
<textarea name="description" id="description" spellcheck="false" placeholder="Description">@HttpUtility.HtmlDecode(Model.Slot.Description)</textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui divider"></div>
|
<div class="ui divider"></div>
|
||||||
<label class="ui button label" id="labelInitiallyLocked" for="checkboxInitiallyLocked">
|
<label class="ui button @(Model.Slot.InitiallyLocked ? "selected" : "")" for="checkboxInitiallyLocked">
|
||||||
<i class="lock icon"></i>
|
<i class="lock icon"></i>
|
||||||
Locked
|
Locked
|
||||||
<input type="checkbox" name="initiallyLocked" id="checkboxInitiallyLocked" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.InitiallyLocked ? "checked" : "") value="true">
|
<input type="checkbox" name="initiallyLocked" id="checkboxInitiallyLocked" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.InitiallyLocked ? "checked" : "") value="true">
|
||||||
</label>
|
</label>
|
||||||
<label class="ui button label" id="labelShareable" for="checkboxShareable">
|
<label class="ui button @(Model.Slot.Shareable == 1 ? "selected" : "")" for="checkboxShareable">
|
||||||
<i class="check icon"></i>
|
<i class="check icon"></i>
|
||||||
Copyable
|
Copyable
|
||||||
<input type="checkbox" name="shareable" id="checkboxShareable" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Shareable == 1 ? "checked" : "") value="1">
|
<input type="checkbox" name="shareable" id="checkboxShareable" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Shareable == 1 ? "checked" : "") value="1">
|
||||||
</label>
|
</label>
|
||||||
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
||||||
{
|
{
|
||||||
<label class="ui button label" id="labelSubLevel" for="checkboxSubLevel">
|
<label class="ui button @(Model.Slot.SubLevel ? "selected" : """ for="checkboxSubLevel">
|
||||||
<i class="arrow circle down icon"></i>
|
<i class="arrow circle down icon"></i>
|
||||||
Sub Level
|
Sub Level
|
||||||
<input type="checkbox" name="subLevel" id="checkboxSubLevel" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.SubLevel ? "checked" : "") value="true">
|
<input type="checkbox" name="subLevel" id="checkboxSubLevel" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.SubLevel ? "checked" : "") value="true">
|
||||||
|
@ -81,7 +81,7 @@ function onSubmit(){
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<label class="ui button label" id="labelLbp1Only" for="checkboxLbp1Only">
|
<label class="ui button @(Model.Slot.Lbp1Only ? "selected" : "")" for="checkboxLbp1Only">
|
||||||
<i class="eye icon"></i>
|
<i class="eye icon"></i>
|
||||||
LBP1 Only
|
LBP1 Only
|
||||||
<input type="checkbox" name="lbp1Only" id="checkboxLbp1Only" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Lbp1Only ? "checked" : "") value="true">
|
<input type="checkbox" name="lbp1Only" id="checkboxLbp1Only" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Lbp1Only ? "checked" : "") value="true">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue