mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-12 01:52:32 +00:00
Merge pull request #13591 from eGellman89/master
Table Top Defined - Bug Fix
This commit is contained in:
@@ -2791,7 +2791,7 @@
|
||||
<div class="Header-I">
|
||||
<div>
|
||||
<h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name="attr_GP"/><br>
|
||||
Total Carry Weight:<input title="@{totalweight}" class="standard-input" name="attr_totalweight" type="text" readonly/>
|
||||
Total Carry Weight:<input title="@{totalweight}" step="any" class="standard-input" name="attr_totalweight" type="text" readonly/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="Column-I">
|
||||
@@ -2811,10 +2811,10 @@
|
||||
<div>Quantity: <input type="number" name="attr_mainquantity"/></div>
|
||||
</div>
|
||||
<div class="piece-weight">
|
||||
<div>Unit Weight: <input type="number" name="attr_mainpieceweight"/></div>
|
||||
<div>Unit Weight: <input step="any" type="number" name="attr_mainpieceweight"/></div>
|
||||
</div>
|
||||
<div class="total-weight">
|
||||
<div>Total Weight: <input type="text" name="attr_maintotalweight" readonly/></div>
|
||||
<div>Total Weight: <input step="any" type="text" name="attr_maintotalweight" readonly/></div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -2834,7 +2834,7 @@
|
||||
Number of Items in location/bag:<br><input type="text" readonly name="attr_locationItemCount"/>
|
||||
</div>
|
||||
<div class="piece-weight">
|
||||
Location/Bag Total Weight:<br><input type="text" readonly name="attr_locationTotalWeight">
|
||||
Location/Bag Total Weight:<br><input step="any" type="text" readonly name="attr_locationTotalWeight">
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -2848,7 +2848,7 @@
|
||||
<div class="sheet-profitloss">
|
||||
<div class="row-header">
|
||||
Profit and Loss Sheet<br>
|
||||
Total Gold:<input title="TotalGold" class="standard-input" name="attr_plTotalGold" type="text" readonly/>
|
||||
Total Gold:<input title="TotalGold" step="any" class="standard-input" name="attr_plTotalGold" type="text" readonly/>
|
||||
</div>
|
||||
<div class="sheet-repeating-fields">
|
||||
<fieldset class="repeating_profitloss">
|
||||
@@ -2857,10 +2857,10 @@
|
||||
<textarea title="Memo" name="attr_plMemo" placeholder="Memo..."></textarea>
|
||||
</div>
|
||||
<div class="name">
|
||||
Debits: <input title="Debits" type="number" name="attr_plDebits"/>
|
||||
Debits: <input title="Debits" step="any" type="number" name="attr_plDebits"/>
|
||||
</div>
|
||||
<div class="quantity">
|
||||
Credits: <input title="Credits" type="number" name="attr_plCredits"/>
|
||||
Credits: <input title="Credits" step="any" type="number" name="attr_plCredits"/>
|
||||
</div>
|
||||
<div class="piece-weight">
|
||||
Running Total: <input title="Running Total" type="number" name="attr_plRunningTotal" readonly/>
|
||||
|
||||
Reference in New Issue
Block a user