Template:T row if
Jump to navigation
Jump to search
Template: T row if | |
---|---|
Use on | Templates |
Use for | Conditional table row |
Category template applies to page | (none) |
Template Parameters (See using templates). | |||
---|---|---|---|
Name | Purpose | Required? | Comment |
1 | First column text | yes | |
2 | Second column text | yes | |
link | link the second column? | no | see note A |
link-name | name of page to link to | no | Defaults to parameter 2 |
col2txt | Second column text | no | Defaults to paramter 2; see note B |
If parameter 2 is not empty, then the code for a table row (wiki syntax) with two columns is returned, else nothing* is returned.
Note A:
- If link=yes, the value of the second column will be a Wikilink, to the page in parameter link-name, or if that is not provided, the page in parameter 2.
Note B:
- If col2txt is provided, this will be used in place of the text supplied to parameter 2, and will not be linked. If you want it linked, include the square brackets in the text of col2txt.
Example:
{| class="wikitable" {{t row if|Provided:|{{{yes|yes}}}}} {{t row if|Not Provided:|{{{no|}}}}} |}
Displays as:
Provided: | yes |
*— A pair of empty <div> tags are actually returned, to avoid display problems.