Update CSS and templates
This commit is contained in:
parent
d614c415c3
commit
48b31f7dec
4 changed files with 45 additions and 18 deletions
|
|
@ -1,12 +1,19 @@
|
|||
<div>
|
||||
<div>
|
||||
Extra Controls
|
||||
<div class="control-group">
|
||||
<label for="{{meta.idp}}-private-data">
|
||||
Private Data Visibility
|
||||
</label>
|
||||
<select
|
||||
id="{{meta.idp}}-private-data"
|
||||
data-bind="_privacySetting"
|
||||
>
|
||||
{{ st-options privacySetting privacyOptions }}
|
||||
</select>
|
||||
</div>
|
||||
{{!-- This currently doesn't support any placeholders :( --}}
|
||||
<multi-select
|
||||
<stats-tracker-multi-select
|
||||
data-bind="_selectedUsers"
|
||||
placeholder="STAT_TRACKER.common.Users"
|
||||
>
|
||||
<option value="">Add a User</option>
|
||||
{{ st-options selectedUsers users }}
|
||||
</multi-select>
|
||||
</stats-tracker-multi-select>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
<div>
|
||||
Table Overview
|
||||
</div>
|
||||
|
|
@ -1,14 +1,26 @@
|
|||
<div>
|
||||
<select
|
||||
data-bind="_selectedTable"
|
||||
>
|
||||
{{ st-options table tables }}
|
||||
</select>
|
||||
{{#if subtables}}
|
||||
<div class="control-group">
|
||||
<label for="{{meta.idp}}-selected-table">
|
||||
{{ localize "STAT_TRACKER.common.Table" }}
|
||||
</label>
|
||||
<select
|
||||
data-bind="_selectedSubtable"
|
||||
id="{{meta.idp}}-selected-table"
|
||||
data-bind="_selectedTable"
|
||||
>
|
||||
{{ st-options subtable subtables }}
|
||||
{{ 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