Get most of the prompt to create new tables working, and keeping the Dice namespace restricted to a certain bucket type
This commit is contained in:
parent
8c9fd1930a
commit
dfc75fceaf
8 changed files with 73 additions and 19 deletions
26
public/templates/Apps/common/tableSelect.hbs
Normal file
26
public/templates/Apps/common/tableSelect.hbs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<div>
|
||||
<div class="control-group">
|
||||
<label for="{{meta.idp}}-selected-table">
|
||||
{{ localize "STAT_TRACKER.common.Table" }}
|
||||
</label>
|
||||
<select
|
||||
id="{{meta.idp}}-selected-table"
|
||||
data-bind="_selectedTable"
|
||||
>
|
||||
{{ st-options table tables }}
|
||||
</select>
|
||||
</div>
|
||||
{{#if subtables}}
|
||||
<div class="control-group">
|
||||
<label for="{{meta.idp}}-selected-subtable">
|
||||
{{ localize "STAT_TRACKER.common.Subtable" }}
|
||||
</label>
|
||||
<select
|
||||
id="{{meta.idp}}-selected-subtable"
|
||||
data-bind="_selectedSubtable"
|
||||
>
|
||||
{{ st-options subtable subtables }}
|
||||
</select>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue