Template:BuildPage: Difference between revisions
More actions
Create BuildPage template for styled Bankers Guild funded build pages |
Fix table syntax + numbered contribution fields (contributor1-15/source1-15/amount1-15) for VE, backward compat with legacy contributions param |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
A styled page template for '''Bankers Guild Funded Build''' pages. Wraps the build's lore, details, and contribution history in a consistent, attractive layout. | A styled page template for '''Bankers Guild Funded Build''' pages. Wraps the build's lore, details, and contribution history in a consistent, attractive layout. | ||
=== Quick Start (Visual Editor) === | |||
# Open a page in the Visual Editor | |||
# Click '''Insert''' → '''Template''' | |||
# Select '''BuildPage''' from your Favorites | |||
# Fill in the labelled fields — each contribution row has its own Contributor / Source / Amount fields | |||
# Click '''Insert''' to add the template | |||
=== Source Editor Example === | |||
<pre> | <pre> | ||
{{BuildPage | {{BuildPage | ||
|subtitle=A Hearth of Warmth and Sweet Delights | |subtitle=A Hearth of Warmth and Sweet Delights | ||
|quote=Where the oven glows | |quote=Where the oven glows and each bite carries sweetness. | ||
|lore=Your build | |lore=Your build lore text goes here. Supports bold, italic, links, paragraphs. | ||
|cost=5 Legends | |cost=5 Legends · 3 Myths · 9 Sagas | ||
|location=AVEREAUX – EMBERMOUNT | |location=AVEREAUX – EMBERMOUNT | ||
|build_code=BG.MRS.09 | |build_code=BG.MRS.09 | ||
| | |contributor1=Bankers Guild | ||
|source1=Valdraeth | |||
|amount1=1 Legend, 5 Myths, 5 Sagas | |||
|contributor2=Avereaux Nation | |||
|source2=National Support Fund | |||
|amount2=3 Myths | |||
|balance=PAID IN FULL | |balance=PAID IN FULL | ||
|nation=Avereaux | |nation=Avereaux | ||
| Line 24: | Line 34: | ||
! Parameter !! Required !! Description | ! Parameter !! Required !! Description | ||
|- | |- | ||
| '''subtitle''' || No || A short tagline or thematic subtitle | | '''subtitle''' || No || A short tagline or thematic subtitle | ||
|- | |- | ||
| '''quote''' || No || A flavour quote displayed in italics | | '''quote''' || No || A flavour quote displayed in italics | ||
|- | |- | ||
| '''lore''' || '''Yes''' || The main body text / lore description | | '''lore''' || '''Yes''' || The main body text / lore description | ||
|- | |- | ||
| '''cost''' || No || Cost of construction ( | | '''cost''' || No || Cost of construction (use middot · to separate) | ||
|- | |- | ||
| '''location''' || No || Build location (e.g. "AVEREAUX – EMBERMOUNT") | | '''location''' || No || Build location (e.g. "AVEREAUX – EMBERMOUNT") | ||
| Line 36: | Line 46: | ||
| '''build_code''' || No || Unique build ID code (e.g. "BG.MRS.09") | | '''build_code''' || No || Unique build ID code (e.g. "BG.MRS.09") | ||
|- | |- | ||
| ''' | | '''contributor1''' – '''contributor15''' || No || Name of each contributor (up to 15 rows) | ||
|- | |||
| '''source1''' – '''source15''' || No || Source or affiliation for each contributor | |||
|- | |||
| '''amount1''' – '''amount15''' || No || Contribution amount for each contributor | |||
|- | |- | ||
| '''balance''' || No || Remaining balance status (e.g. "PAID IN FULL") | | '''balance''' || No || Remaining balance status (e.g. "PAID IN FULL") | ||
|- | |- | ||
| '''nation''' || | | '''nation''' || '''Yes''' || Nation name, used for categories and back-link | ||
|} | |} | ||
<templatedata> | |||
{ | |||
"description": "A styled page template for Bankers Guild Funded Build pages. Creates a consistent layout with subtitle, flavour quote, lore text, build details table, and contributions table.", | |||
"format": "block", | |||
"params": { | |||
"subtitle": { | |||
"label": "Subtitle", | |||
"description": "A short tagline or thematic subtitle displayed in gold below the page title", | |||
"example": "A Hearth of Warmth and Sweet Delights", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"quote": { | |||
"label": "Flavour Quote", | |||
"description": "An italicised flavour quote displayed with decorative curly quotes", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"lore": { | |||
"label": "Lore Text", | |||
"description": "The main body text describing the build. Supports full wikitext formatting (bold, italic, links, paragraphs). This field uses a large resizable text area.", | |||
"type": "content", | |||
"required": true | |||
}, | |||
"cost": { | |||
"label": "Cost of Construction", | |||
"description": "The build cost. Use middot (·) to separate currency types. Do NOT use pipe characters.", | |||
"example": "5 Legends · 3 Myths · 9 Sagas", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"location": { | |||
"label": "Location", | |||
"description": "Where the build is located. Typically in ALL CAPS by convention.", | |||
"example": "AVEREAUX – EMBERMOUNT", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"build_code": { | |||
"label": "Unique Build Code", | |||
"description": "The Bankers Guild build code. Displayed in a monospace badge.", | |||
"example": "BG.MRS.09", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"nation": { | |||
"label": "Nation", | |||
"description": "The nation this build belongs to. Used to auto-categorise the page.", | |||
"type": "string", | |||
"required": true, | |||
"suggestedvalues": [ | |||
"Avereaux", | |||
"Hammerstadt", | |||
"Kairos", | |||
"Morvalis", | |||
"Portavas", | |||
"Syradonia", | |||
"The Wonder", | |||
"Urdrevan", | |||
"Valdraeth" | |||
] | |||
}, | |||
"balance": { | |||
"label": "Remaining Balance", | |||
"description": "The remaining balance shown in the contributions table footer.", | |||
"example": "PAID IN FULL", | |||
"type": "string", | |||
"suggestedvalues": [ | |||
"PAID IN FULL", | |||
"FULLY FUNDED" | |||
], | |||
"suggested": true | |||
}, | |||
"contributor1": { | |||
"label": "Contributor 1", | |||
"description": "Name of contributor 1", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"source1": { | |||
"label": "Source 1", | |||
"description": "Source or affiliation of contributor 1", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"amount1": { | |||
"label": "Amount 1", | |||
"description": "Contribution amount from contributor 1", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"contributor2": { | |||
"label": "Contributor 2", | |||
"description": "Name of contributor 2", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"source2": { | |||
"label": "Source 2", | |||
"description": "Source or affiliation of contributor 2", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"amount2": { | |||
"label": "Amount 2", | |||
"description": "Contribution amount from contributor 2", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"contributor3": { | |||
"label": "Contributor 3", | |||
"description": "Name of contributor 3", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"source3": { | |||
"label": "Source 3", | |||
"description": "Source or affiliation of contributor 3", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"amount3": { | |||
"label": "Amount 3", | |||
"description": "Contribution amount from contributor 3", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"contributor4": { | |||
"label": "Contributor 4", | |||
"description": "Name of contributor 4", | |||
"type": "string" | |||
}, | |||
"source4": { | |||
"label": "Source 4", | |||
"description": "Source or affiliation of contributor 4", | |||
"type": "string" | |||
}, | |||
"amount4": { | |||
"label": "Amount 4", | |||
"description": "Contribution amount from contributor 4", | |||
"type": "string" | |||
}, | |||
"contributor5": { | |||
"label": "Contributor 5", | |||
"description": "Name of contributor 5", | |||
"type": "string" | |||
}, | |||
"source5": { | |||
"label": "Source 5", | |||
"description": "Source or affiliation of contributor 5", | |||
"type": "string" | |||
}, | |||
"amount5": { | |||
"label": "Amount 5", | |||
"description": "Contribution amount from contributor 5", | |||
"type": "string" | |||
}, | |||
"contributor6": { | |||
"label": "Contributor 6", | |||
"description": "Name of contributor 6", | |||
"type": "string" | |||
}, | |||
"source6": { | |||
"label": "Source 6", | |||
"description": "Source or affiliation of contributor 6", | |||
"type": "string" | |||
}, | |||
"amount6": { | |||
"label": "Amount 6", | |||
"description": "Contribution amount from contributor 6", | |||
"type": "string" | |||
}, | |||
"contributor7": { | |||
"label": "Contributor 7", | |||
"description": "Name of contributor 7", | |||
"type": "string" | |||
}, | |||
"source7": { | |||
"label": "Source 7", | |||
"description": "Source or affiliation of contributor 7", | |||
"type": "string" | |||
}, | |||
"amount7": { | |||
"label": "Amount 7", | |||
"description": "Contribution amount from contributor 7", | |||
"type": "string" | |||
}, | |||
"contributor8": { | |||
"label": "Contributor 8", | |||
"description": "Name of contributor 8", | |||
"type": "string" | |||
}, | |||
"source8": { | |||
"label": "Source 8", | |||
"description": "Source or affiliation of contributor 8", | |||
"type": "string" | |||
}, | |||
"amount8": { | |||
"label": "Amount 8", | |||
"description": "Contribution amount from contributor 8", | |||
"type": "string" | |||
}, | |||
"contributor9": { | |||
"label": "Contributor 9", | |||
"description": "Name of contributor 9", | |||
"type": "string" | |||
}, | |||
"source9": { | |||
"label": "Source 9", | |||
"description": "Source or affiliation of contributor 9", | |||
"type": "string" | |||
}, | |||
"amount9": { | |||
"label": "Amount 9", | |||
"description": "Contribution amount from contributor 9", | |||
"type": "string" | |||
}, | |||
"contributor10": { | |||
"label": "Contributor 10", | |||
"description": "Name of contributor 10", | |||
"type": "string" | |||
}, | |||
"source10": { | |||
"label": "Source 10", | |||
"description": "Source or affiliation of contributor 10", | |||
"type": "string" | |||
}, | |||
"amount10": { | |||
"label": "Amount 10", | |||
"description": "Contribution amount from contributor 10", | |||
"type": "string" | |||
}, | |||
"contributor11": { | |||
"label": "Contributor 11", | |||
"description": "Name of contributor 11", | |||
"type": "string" | |||
}, | |||
"source11": { | |||
"label": "Source 11", | |||
"description": "Source or affiliation of contributor 11", | |||
"type": "string" | |||
}, | |||
"amount11": { | |||
"label": "Amount 11", | |||
"description": "Contribution amount from contributor 11", | |||
"type": "string" | |||
}, | |||
"contributor12": { | |||
"label": "Contributor 12", | |||
"description": "Name of contributor 12", | |||
"type": "string" | |||
}, | |||
"source12": { | |||
"label": "Source 12", | |||
"description": "Source or affiliation of contributor 12", | |||
"type": "string" | |||
}, | |||
"amount12": { | |||
"label": "Amount 12", | |||
"description": "Contribution amount from contributor 12", | |||
"type": "string" | |||
}, | |||
"contributor13": { | |||
"label": "Contributor 13", | |||
"description": "Name of contributor 13", | |||
"type": "string" | |||
}, | |||
"source13": { | |||
"label": "Source 13", | |||
"description": "Source or affiliation of contributor 13", | |||
"type": "string" | |||
}, | |||
"amount13": { | |||
"label": "Amount 13", | |||
"description": "Contribution amount from contributor 13", | |||
"type": "string" | |||
}, | |||
"contributor14": { | |||
"label": "Contributor 14", | |||
"description": "Name of contributor 14", | |||
"type": "string" | |||
}, | |||
"source14": { | |||
"label": "Source 14", | |||
"description": "Source or affiliation of contributor 14", | |||
"type": "string" | |||
}, | |||
"amount14": { | |||
"label": "Amount 14", | |||
"description": "Contribution amount from contributor 14", | |||
"type": "string" | |||
}, | |||
"contributor15": { | |||
"label": "Contributor 15", | |||
"description": "Name of contributor 15", | |||
"type": "string" | |||
}, | |||
"source15": { | |||
"label": "Source 15", | |||
"description": "Source or affiliation of contributor 15", | |||
"type": "string" | |||
}, | |||
"amount15": { | |||
"label": "Amount 15", | |||
"description": "Contribution amount from contributor 15", | |||
"type": "string" | |||
}, | |||
"contributions": { | |||
"label": "Contributions (legacy)", | |||
"description": "Legacy format: raw wiki table rows. For new pages, use the numbered Contributor/Source/Amount fields instead.", | |||
"type": "content", | |||
"deprecated": "Use the numbered contributor/source/amount fields instead." | |||
} | |||
}, | |||
"paramOrder": [ | |||
"subtitle", | |||
"quote", | |||
"lore", | |||
"cost", | |||
"location", | |||
"build_code", | |||
"nation", | |||
"balance", | |||
"contributor1", | |||
"source1", | |||
"amount1", | |||
"contributor2", | |||
"source2", | |||
"amount2", | |||
"contributor3", | |||
"source3", | |||
"amount3", | |||
"contributor4", | |||
"source4", | |||
"amount4", | |||
"contributor5", | |||
"source5", | |||
"amount5", | |||
"contributor6", | |||
"source6", | |||
"amount6", | |||
"contributor7", | |||
"source7", | |||
"amount7", | |||
"contributor8", | |||
"source8", | |||
"amount8", | |||
"contributor9", | |||
"source9", | |||
"amount9", | |||
"contributor10", | |||
"source10", | |||
"amount10", | |||
"contributor11", | |||
"source11", | |||
"amount11", | |||
"contributor12", | |||
"source12", | |||
"amount12", | |||
"contributor13", | |||
"source13", | |||
"amount13", | |||
"contributor14", | |||
"source14", | |||
"amount14", | |||
"contributor15", | |||
"source15", | |||
"amount15", | |||
"contributions" | |||
] | |||
} | |||
</templatedata> | |||
</noinclude><includeonly><div class="build-page"> | </noinclude><includeonly><div class="build-page"> | ||
<div class="build-page-header">{{#if:{{{subtitle|}}}| | <div class="build-page-header">{{#if:{{{subtitle|}}}| | ||
| Line 56: | Line 442: | ||
<div class="build-page-details"> | <div class="build-page-details"> | ||
{{{!}} class="wikitable build-details-table" | {{{!}} class="wikitable build-details-table" | ||
! Cost of Construction | ! Cost of Construction {{!}} {{{cost}}} | ||
{{!}} {{{cost}}} | |||
{{!}}- | {{!}}- | ||
! Location | ! Location {{!}} {{{location}}} | ||
{{!}} {{{location}}} | |||
{{!}}- | {{!}}- | ||
! Unique Build Code | ! Unique Build Code {{!}} <code>{{{build_code}}}</code> | ||
{{!}} <code>{{{build_code}}}</code> | |||
{{!}}} | {{!}}} | ||
</div>}}}}}}{{#if:{{{cost|}}}|{{#ifeq:{{#if:{{{location|}}}|1|0}}{{#if:{{{build_code|}}}|1|0}}|00| | </div>}}}}}}{{#if:{{{cost|}}}|{{#ifeq:{{#if:{{{location|}}}|1|0}}{{#if:{{{build_code|}}}|1|0}}|00| | ||
<div class="build-page-details"> | <div class="build-page-details"> | ||
{{{!}} class="wikitable build-details-table" | {{{!}} class="wikitable build-details-table" | ||
! Cost of Construction | ! Cost of Construction {{!}} {{{cost}}} | ||
{{!}} {{{cost}}} | |||
{{!}}} | {{!}}} | ||
</div>}}}} | </div>}}}} | ||
{{#if:{{{contributions|}}}| | {{#if:{{{contributor1|}}}| | ||
<div class="build-page-contributions"> | |||
=== Contributions === | |||
{{{!}} class="wikitable" style="width:100%;" | |||
! Contributor !! Source !! Amount | |||
{{!}}- | |||
{{!}} {{{contributor1|}}} {{!}}{{!}} {{{source1|}}} {{!}}{{!}} {{{amount1|}}} | |||
{{#if:{{{contributor2|}}}|{{!}}- | |||
{{!}} {{{contributor2|}}} {{!}}{{!}} {{{source2|}}} {{!}}{{!}} {{{amount2|}}} | |||
}}{{#if:{{{contributor3|}}}|{{!}}- | |||
{{!}} {{{contributor3|}}} {{!}}{{!}} {{{source3|}}} {{!}}{{!}} {{{amount3|}}} | |||
}}{{#if:{{{contributor4|}}}|{{!}}- | |||
{{!}} {{{contributor4|}}} {{!}}{{!}} {{{source4|}}} {{!}}{{!}} {{{amount4|}}} | |||
}}{{#if:{{{contributor5|}}}|{{!}}- | |||
{{!}} {{{contributor5|}}} {{!}}{{!}} {{{source5|}}} {{!}}{{!}} {{{amount5|}}} | |||
}}{{#if:{{{contributor6|}}}|{{!}}- | |||
{{!}} {{{contributor6|}}} {{!}}{{!}} {{{source6|}}} {{!}}{{!}} {{{amount6|}}} | |||
}}{{#if:{{{contributor7|}}}|{{!}}- | |||
{{!}} {{{contributor7|}}} {{!}}{{!}} {{{source7|}}} {{!}}{{!}} {{{amount7|}}} | |||
}}{{#if:{{{contributor8|}}}|{{!}}- | |||
{{!}} {{{contributor8|}}} {{!}}{{!}} {{{source8|}}} {{!}}{{!}} {{{amount8|}}} | |||
}}{{#if:{{{contributor9|}}}|{{!}}- | |||
{{!}} {{{contributor9|}}} {{!}}{{!}} {{{source9|}}} {{!}}{{!}} {{{amount9|}}} | |||
}}{{#if:{{{contributor10|}}}|{{!}}- | |||
{{!}} {{{contributor10|}}} {{!}}{{!}} {{{source10|}}} {{!}}{{!}} {{{amount10|}}} | |||
}}{{#if:{{{contributor11|}}}|{{!}}- | |||
{{!}} {{{contributor11|}}} {{!}}{{!}} {{{source11|}}} {{!}}{{!}} {{{amount11|}}} | |||
}}{{#if:{{{contributor12|}}}|{{!}}- | |||
{{!}} {{{contributor12|}}} {{!}}{{!}} {{{source12|}}} {{!}}{{!}} {{{amount12|}}} | |||
}}{{#if:{{{contributor13|}}}|{{!}}- | |||
{{!}} {{{contributor13|}}} {{!}}{{!}} {{{source13|}}} {{!}}{{!}} {{{amount13|}}} | |||
}}{{#if:{{{contributor14|}}}|{{!}}- | |||
{{!}} {{{contributor14|}}} {{!}}{{!}} {{{source14|}}} {{!}}{{!}} {{{amount14|}}} | |||
}}{{#if:{{{contributor15|}}}|{{!}}- | |||
{{!}} {{{contributor15|}}} {{!}}{{!}} {{{source15|}}} {{!}}{{!}} {{{amount15|}}} | |||
}}{{!}}- | |||
! Remaining Balance: {{!}}{{!}} colspan="2" {{!}} '''{{{balance|}}}''' | |||
{{!}}} | |||
</div>|{{#if:{{{contributions|}}}| | |||
<div class="build-page-contributions"> | <div class="build-page-contributions"> | ||
=== Contributions === | === Contributions === | ||
| Line 81: | Line 501: | ||
{{{contributions}}} | {{{contributions}}} | ||
{{!}}- | {{!}}- | ||
! Remaining Balance: {{!}}{{!}} colspan="2" {{!}} '''{{{balance| | ! Remaining Balance: {{!}}{{!}} colspan="2" {{!}} '''{{{balance|}}}''' | ||
{{!}}} | {{!}}} | ||
</div>}} | </div>}}}} | ||
</div>{{#if:{{{nation|}}}| | </div>{{#if:{{{nation|}}}| [[Category:{{{nation}}}]]}}[[Category:Funded Builds]][[Category:Bankers Guild Builds]]</includeonly> | ||
[[Category:{{{nation}}}]]}}[[Category:Funded Builds]][[Category:Bankers Guild Builds]]</includeonly> | |||
Latest revision as of 11:28, 15 March 2026
Usage
A styled page template for Bankers Guild Funded Build pages. Wraps the build's lore, details, and contribution history in a consistent, attractive layout.
Quick Start (Visual Editor)
- Open a page in the Visual Editor
- Click Insert → Template
- Select BuildPage from your Favorites
- Fill in the labelled fields — each contribution row has its own Contributor / Source / Amount fields
- Click Insert to add the template
Source Editor Example
{{BuildPage
|subtitle=A Hearth of Warmth and Sweet Delights
|quote=Where the oven glows and each bite carries sweetness.
|lore=Your build lore text goes here. Supports bold, italic, links, paragraphs.
|cost=5 Legends · 3 Myths · 9 Sagas
|location=AVEREAUX – EMBERMOUNT
|build_code=BG.MRS.09
|contributor1=Bankers Guild
|source1=Valdraeth
|amount1=1 Legend, 5 Myths, 5 Sagas
|contributor2=Avereaux Nation
|source2=National Support Fund
|amount2=3 Myths
|balance=PAID IN FULL
|nation=Avereaux
}}
Parameters
| Parameter | Required | Description |
|---|---|---|
| subtitle | No | A short tagline or thematic subtitle |
| quote | No | A flavour quote displayed in italics |
| lore | Yes | The main body text / lore description |
| cost | No | Cost of construction (use middot · to separate) |
| location | No | Build location (e.g. "AVEREAUX – EMBERMOUNT") |
| build_code | No | Unique build ID code (e.g. "BG.MRS.09") |
| contributor1 – contributor15 | No | Name of each contributor (up to 15 rows) |
| source1 – source15 | No | Source or affiliation for each contributor |
| amount1 – amount15 | No | Contribution amount for each contributor |
| balance | No | Remaining balance status (e.g. "PAID IN FULL") |
| nation | Yes | Nation name, used for categories and back-link |
A styled page template for Bankers Guild Funded Build pages. Creates a consistent layout with subtitle, flavour quote, lore text, build details table, and contributions table.
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| Subtitle | subtitle | A short tagline or thematic subtitle displayed in gold below the page title
| String | suggested |
| Flavour Quote | quote | An italicised flavour quote displayed with decorative curly quotes | String | suggested |
| Lore Text | lore | The main body text describing the build. Supports full wikitext formatting (bold, italic, links, paragraphs). This field uses a large resizable text area. | Content | required |
| Cost of Construction | cost | The build cost. Use middot (·) to separate currency types. Do NOT use pipe characters.
| String | suggested |
| Location | location | Where the build is located. Typically in ALL CAPS by convention.
| String | suggested |
| Unique Build Code | build_code | The Bankers Guild build code. Displayed in a monospace badge.
| String | suggested |
| Nation | nation | The nation this build belongs to. Used to auto-categorise the page.
| String | required |
| Remaining Balance | balance | The remaining balance shown in the contributions table footer.
| String | suggested |
| Contributor 1 | contributor1 | Name of contributor 1 | String | suggested |
| Source 1 | source1 | Source or affiliation of contributor 1 | String | suggested |
| Amount 1 | amount1 | Contribution amount from contributor 1 | String | suggested |
| Contributor 2 | contributor2 | Name of contributor 2 | String | suggested |
| Source 2 | source2 | Source or affiliation of contributor 2 | String | suggested |
| Amount 2 | amount2 | Contribution amount from contributor 2 | String | suggested |
| Contributor 3 | contributor3 | Name of contributor 3 | String | suggested |
| Source 3 | source3 | Source or affiliation of contributor 3 | String | suggested |
| Amount 3 | amount3 | Contribution amount from contributor 3 | String | suggested |
| Contributor 4 | contributor4 | Name of contributor 4 | String | optional |
| Source 4 | source4 | Source or affiliation of contributor 4 | String | optional |
| Amount 4 | amount4 | Contribution amount from contributor 4 | String | optional |
| Contributor 5 | contributor5 | Name of contributor 5 | String | optional |
| Source 5 | source5 | Source or affiliation of contributor 5 | String | optional |
| Amount 5 | amount5 | Contribution amount from contributor 5 | String | optional |
| Contributor 6 | contributor6 | Name of contributor 6 | String | optional |
| Source 6 | source6 | Source or affiliation of contributor 6 | String | optional |
| Amount 6 | amount6 | Contribution amount from contributor 6 | String | optional |
| Contributor 7 | contributor7 | Name of contributor 7 | String | optional |
| Source 7 | source7 | Source or affiliation of contributor 7 | String | optional |
| Amount 7 | amount7 | Contribution amount from contributor 7 | String | optional |
| Contributor 8 | contributor8 | Name of contributor 8 | String | optional |
| Source 8 | source8 | Source or affiliation of contributor 8 | String | optional |
| Amount 8 | amount8 | Contribution amount from contributor 8 | String | optional |
| Contributor 9 | contributor9 | Name of contributor 9 | String | optional |
| Source 9 | source9 | Source or affiliation of contributor 9 | String | optional |
| Amount 9 | amount9 | Contribution amount from contributor 9 | String | optional |
| Contributor 10 | contributor10 | Name of contributor 10 | String | optional |
| Source 10 | source10 | Source or affiliation of contributor 10 | String | optional |
| Amount 10 | amount10 | Contribution amount from contributor 10 | String | optional |
| Contributor 11 | contributor11 | Name of contributor 11 | String | optional |
| Source 11 | source11 | Source or affiliation of contributor 11 | String | optional |
| Amount 11 | amount11 | Contribution amount from contributor 11 | String | optional |
| Contributor 12 | contributor12 | Name of contributor 12 | String | optional |
| Source 12 | source12 | Source or affiliation of contributor 12 | String | optional |
| Amount 12 | amount12 | Contribution amount from contributor 12 | String | optional |
| Contributor 13 | contributor13 | Name of contributor 13 | String | optional |
| Source 13 | source13 | Source or affiliation of contributor 13 | String | optional |
| Amount 13 | amount13 | Contribution amount from contributor 13 | String | optional |
| Contributor 14 | contributor14 | Name of contributor 14 | String | optional |
| Source 14 | source14 | Source or affiliation of contributor 14 | String | optional |
| Amount 14 | amount14 | Contribution amount from contributor 14 | String | optional |
| Contributor 15 | contributor15 | Name of contributor 15 | String | optional |
| Source 15 | source15 | Source or affiliation of contributor 15 | String | optional |
| Amount 15 | amount15 | Contribution amount from contributor 15 | String | optional |
| Contributions (legacy) | contributions | Legacy format: raw wiki table rows. For new pages, use the numbered Contributor/Source/Amount fields instead. | Content | deprecated |