Difference between revisions of "Template:Temp test"

From SMT: Dx2 Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
<includeonly>{| border=0 style="max-width: 190px; text-align: center"
 
<includeonly>{| border=0 style="max-width: 190px; text-align: center"
{{#if: {{{var_x1|var_x2|var_x3|}}} | <tr style="color: white; background: #4b4d4f; text-align: center; font-size: 12px"><td>Something was Passed</td></tr> | <tr height="0">Nothing was passed!</tr>}}
+
{{#if: {{{var_x1|var_x2|var_x3|}}} | <tr style="color: white; background: #4b4d4f; text-align: center;"><td> {{{var_x1}}}{{{var_x2}}}{{{var_x3}}}</td></tr> | <tr height="0">Nothing was passed!</tr>}}
 
|}</includeonly>
 
|}</includeonly>
 
<noinclude>[[Category:Templates|{{PAGENAME}}]]
 
<noinclude>[[Category:Templates|{{PAGENAME}}]]
Line 16: Line 16:
 
{| class="wikitable"
 
{| class="wikitable"
 
|+When any are passed in:
 
|+When any are passed in:
| valign="top" |{{Temp_test|var_x1=Yes|var_x2=|var_x3=}}<br>
+
| valign="top" |{{Temp_test|var_x1=Yes|var_x2=Yes|var_x3=}}<br>
 
|}
 
|}
  

Latest revision as of 04:17, 15 September 2021

Use/Examples

When passing variables.

{{Temp_test|var_x1=|var_x2=|var_x3=}}
When none are passed in:
Nothing was passed!


When any are passed in:
YesYes


The main factor here is the pipe within the if statement testing beyond what variable is resolved:

{{#if: {{{var_x1|var_x2|var_x3|}}} | Something was Passed | Nothing was passed!}}