Template:Money: Difference between revisions
mNo edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 15: | Line 15: | ||
cp = value - pp * 10000 - gp * 100; | cp = value - pp * 10000 - gp * 100; | ||
</pre> | </pre> | ||
</noinclude><templatestyles src="Money/styles.css" /><span class="template_money">{{#ifexpr: {{{showZeros|1}}} or floor({{{value|0}}} / 10000) > 0|{{#expr: floor({{{value|0}}} / 10000)}} | </noinclude><templatestyles src="Money/styles.css" /><span class="template_money">{{#ifexpr: {{{showZeros|1}}} or floor({{{value|0}}} / 10000) > 0|{{#expr: floor({{{value|0}}} / 10000)}} [[File:coins_pp.gif|link=]]}} {{#ifexpr: {{{showZeros|1}}} or floor(({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000) / 100) > 0|{{#expr: floor(({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000) / 100)}} [[File:coins_gp.gif|link=]]}} {{#ifexpr: {{{showZeros|1}}} or floor({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000 - floor(({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000) / 100) * 100) > 0|{{#expr: floor({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000 - floor(({{{value|0}}} - floor({{{value|0}}} / 10000) * 10000) / 100) * 100)}} [[File:coins_cp.gif|link=]] }}{{#ifexpr: {{{showSum|1}}}| ({{{value|0}}})}}</span> |
Latest revision as of 02:18, 10 July 2024
This is the "Money" template. It should be transcluded in the following format:
{{Money |value= |showZeros= |showSum= }}
The input value is separated into the 3 different currencies as follow:
pp = Math.floor(value / 10000); gp = Math.floor((value - pp * 10000) / 100); cp = value - pp * 10000 - gp * 100;
0 0 0 (0)