Template:Infobox Startup: Difference between revisions

No edit summary
No edit summary
Line 6: Line 6:
  | title = {{BASEPAGENAME}}
  | title = {{BASEPAGENAME}}


  | label1 = Website
  | image = {{{logo|}}}
| data1  = {{#if:{{{website|}}}|[{{{website}}} {{{website}}}]}}


  | label2 = Primary Vertical
| label1 = Status
  | data2 = {{#if:{{{vertical|}}}|[[{{{vertical}}}]]}}  
| data1 = {{#if:{{{status|}}}|[[{{{status}}}]]}}
 
  | label2 = Website
| data2  = {{#if:{{{website|}}}|[{{{website}}} {{{website}}}]}}
 
| label3 = Primary Vertical
  | data3 = {{#if:{{{vertical|}}}|[[{{{vertical}}}]]}}  
   
   
  | label3 = Latest Funding Round
  | label4 = Latest Funding Round
  | data3 = {{#if:{{{latest_funding|}}}|[[{{{latest_funding}}}]]}}  
  | data4 = {{#if:{{{latest_funding|}}}|[[{{{latest_funding}}}]]}}  
   
   
}}
}}
Line 24: Line 29:
<syntaxhighlight lang="text">
<syntaxhighlight lang="text">
{{Infobox_Startup
{{Infobox_Startup
  | name    = ExampleCo
  | Status = Active
  | country = Singapore
  | image = ExampleLogo.png
  | website  = example.com
  | website  = example.com
  | founded = 2022
  | vertical = [[Environment]]
| latest_funding = Series A
}}
}}
</syntaxhighlight>
</syntaxhighlight>
Line 42: Line 48:
"suggested": true
"suggested": true
},
},
        "status": {
            "label": "Status",
            "description": "The current operational status of the company.",
            "type": "string",
            "required": true,
            "suggested": true,
            "suggestedvalues": [
                "Active",
                "Acquired",
                "IPO",
                "Defunct"
            ]
        },
        "logo": {
            "label": "Logo",
            "description": "The filename of the startup's logo (e.g., ExampleLogo.png)",
            "type": "wiki-file-name"
        },
"vertical": {
"vertical": {
"label": "Vertical",
"label": "Vertical",
Line 49: Line 73:
},
},
"latest_funding": {
"latest_funding": {
"label": "Vertical",
"label": "Latest funding round",
"description": "The startup's latest funding round. Where possible, use a value from [[List of Funding Rounds]]",
"description": "The startup's latest funding round. Where possible, use a value from [[List of Funding Rounds]]",
"type": "string",
"type": "string",
Line 63: Line 87:
"paramOrder": [
"paramOrder": [
"website",
"website",
        "logo",
        "status",
"vertical",
"vertical",
         "latest_funding",
         "latest_funding",