Template:Infobox Investor: Difference between revisions
Created page with "<templatestyles src="Template:Infobox/styles.css" /> <templatestyles src="Template:Infobox_Startup/styles.css" /> {{#invoke:InfoboxMinimal|infobox | bodyclass = investor | name = {{{name|{{BASEPAGENAME}}}}} | title = {{{name|{{BASEPAGENAME}}}}} | label1 = Country | data1 = {{{country|}}} | label2 = Domain | data2 = {{#if:{{{domain|}}}|[https://{{{domain}}} {{{domain}}}]}} }} <noinclude> == Usage == <syntaxhighlight lang="text"> {{Infobox_Investor | name..." |
mNo edit summary |
||
| Line 4: | Line 4: | ||
{{#invoke:InfoboxMinimal|infobox | {{#invoke:InfoboxMinimal|infobox | ||
| bodyclass = investor | | bodyclass = investor | ||
| title = {{BASEPAGENAME}} | |||
| title = | |||
| label1 = | | image = {{{logo|}}} | ||
| data1 | |||
| label1 = Status | |||
| data1 = {{#if:{{{status|}}}|[[{{{status}}}]]}} | |||
}} | }} | ||
| Line 18: | Line 17: | ||
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
{{Infobox_Investor | {{Infobox_Investor | ||
| | | status = Active | ||
| | | | ||
}} | }} | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 27: | Line 25: | ||
<templatedata> | <templatedata> | ||
{ | { | ||
"description": " | "description": "Use this template to add an infobox to an Investor page", | ||
"params": { | "params": { | ||
"status": { | |||
"label": "Status", | |||
"description": "The current operational status of the company.", | |||
"type": "string", | |||
"required": true, | |||
"suggested": true, | |||
"suggestedvalues": [ | |||
"Active", | |||
"Acquired", | |||
"IPO", | |||
"Defunct" | |||
] | |||
}, | |||
"country": { | "country": { | ||
"label": "Country", | "label": "Country", | ||
| Line 48: | Line 53: | ||
} | } | ||
}, | }, | ||
"paramOrder": [" | "paramOrder": ["status", "country", "domain"] | ||
} | } | ||
</templatedata> | </templatedata> | ||
</noinclude> | </noinclude> | ||