16 lines
666 B
Handlebars
16 lines
666 B
Handlebars
{{!--
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
SPDX-FileCopyrightText: 2021 Siegfried Krug
|
|
|
|
SPDX-License-Identifier: MIT
|
|
--}}
|
|
|
|
<h4 class="ds4-currency-title">{{localize 'DS4.CharacterCurrency'}}</h4>
|
|
<div class="ds4-currency">
|
|
{{#each data.system.currency as |value key|}}
|
|
<label for="system.currency.{{key}}" class="flex05">{{lookup ../config.i18n.characterCurrency key}}</label>
|
|
<input class="ds4-currency__value ds4-currency__value--{{key}}" type="number" min="0" step="1"
|
|
name="system.currency.{{key}}" id="system.currency.{{key}}" value="{{value}}" data-dtype="Number" />
|
|
{{/each}}
|
|
</div>
|