Template:Currency/doc: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
(Add some documentation for new args) |
(Document changed show_zeros arg) |
||
Line 35: | Line 35: | ||
|{{Currency|-1}} |
|{{Currency|-1}} |
||
|- |
|- |
||
|<nowiki>{{Currency|- |
|<nowiki>{{Currency|-4,003,002,001,000}}</nowiki> |
||
|{{Currency|- |
|{{Currency|-4,003,002,001,000}} |
||
|- |
|- |
||
|<nowiki>{{Currency|2*(8/4)}}</nowiki> |
|<nowiki>{{Currency|2*(8/4)}}</nowiki> |
||
Line 58: | Line 58: | ||
{{T|Currency|200100|all_signs=yes|force_sign=yes}}: {{Currency|200100|all_signs=yes|force_sign=yes}} |
{{T|Currency|200100|all_signs=yes|force_sign=yes}}: {{Currency|200100|all_signs=yes|force_sign=yes}} |
||
=== |
===show_zeros=== |
||
Three options: |
|||
After the first denomination is shown, show all smaller denominations even if there are zero of them |
|||
* <code>show_zeros=some</code> (default): show the zero valued denominations between the biggest and smallest denomination |
|||
* <code>show_zeros=all</code>: show all zeros after the first denomination up to copper |
|||
* <code>show_zeros=none</code>: hide all denominations with zero value |
|||
{| class="wikitable" |
|||
{{T|Currency|400000000000|show_zeroes=yes}}: {{Currency|400000000000|show_zeroes=yes}} |
|||
! Amount |
|||
! <code>show_zeros=some</code> |
|||
{{T|Currency|300000100|show_zeroes=yes}}: {{Currency|300000100|show_zeroes=yes}} |
|||
! <code>show_zeros=all</code> |
|||
! <code>show_zeros=none</code> |
|||
|- |
|||
| 0 || {{Currency|0|show_zeros=some}} || {{Currency|0|show_zeros=all}} || {{Currency|0|show_zeros=all}} |
|||
|- |
|||
| 1 || {{Currency|1|show_zeros=some}} || {{Currency|1|show_zeros=all}} || {{Currency|1|show_zeros=all}} |
|||
|- |
|||
| 2,000 || {{Currency|2000|show_zeros=some}} || {{Currency|2000|show_zeros=all}} || {{Currency|2000|show_zeros=all}} |
|||
|- |
|||
| 2,001 || {{Currency|2001|show_zeros=some}} || {{Currency|2001|show_zeros=all}} || {{Currency|2001|show_zeros=all}} |
|||
|- |
|||
| 3,002,000 || {{Currency|3002000|show_zeros=some}} || {{Currency|3002000|show_zeros=all}} || {{Currency|3002000|show_zeros=all}} |
|||
|- |
|||
| 4,000,002,000 || {{Currency|4000002000|show_zeros=some}} || {{Currency|4000002000|show_zeros=all}} || {{Currency|4000002000|show_zeros=all}} |
|||
|} |
|||
<includeonly>[[Category:Formatting templates]]</includeonly> |
<includeonly>[[Category:Formatting templates]]</includeonly> |
Revision as of 15:00, 20 November 2024
Template:Currency invokes function main in Module:Currency using Lua.
The currency template formats currency using the in-game icons.
Usage
Code | Visible result |
---|---|
{{Currency|0}} | 0 |
{{Currency|100}} | 100 |
{{Currency|200100}} | 200 100 |
{{Currency|300200100}} | 300 200 100 |
{{Currency|400300200100}} | 400 300 200 100 |
{{Currency|400000000000}} | 400 |
{{Currency|300000100}} | 300 0 100 |
{{Currency|400000200000}} | 400 300 200 100 |
{{Currency|-1}} | -1 |
{{Currency|-4,003,002,001,000}} | -4003 2 1 |
{{Currency|2*(8/4)}} | 4 |
force_sign
Force a sign in front of the currency.
{{Currency|200100|force_sign=yes}}
: +200 100
{{Currency|-200100|force_sign=yes}}
: -200 100 (no effect)
{{Currency|0|force_sign=yes}}
: ±0
all_signs
Show the sign on all denominations
{{Currency|-200100|all_signs=yes}}
: -200 -100
{{Currency|200100|force_sign=yes|all_signs=yes}}
: +200 +100
show_zeros
Three options:
show_zeros=some
(default): show the zero valued denominations between the biggest and smallest denominationshow_zeros=all
: show all zeros after the first denomination up to coppershow_zeros=none
: hide all denominations with zero value
Amount | show_zeros=some
|
show_zeros=all
|
show_zeros=none
|
---|---|---|---|
0 | 0 | 0 | 0 |
1 | 1 | 1 | 1 |
2,000 | 2 | 2 0 | 2 0 |
2,001 | 2 1 | 2 1 | 2 1 |
3,002,000 | 3 2 | 3 2 0 | 3 2 0 |
4,000,002,000 | 4 0 2 | 4 0 2 0 | 4 0 2 0 |