Files
firefly-iii/resources/views/v1/javascript/currencies.twig

5 lines
195 B
Twig
Raw Normal View History

var currencyInfo = [];
{% for id, currency in currencies %}
currencyInfo[{{ id }}] = {name: "{{ currency.name }}", symbol: "{{ currency.symbol }}", code: "{{ currency.code }}"};
{% endfor %}