Template:Shops/TableRow

From MHWiki

In order to use this template, insert {{Shops/TableRow}}, with the mandatory parameters stated below.
Please note that sole usage of this {{Shops/TableRow}} template is not sufficient for generating a full table.
This template itself is not used directly: instead, {{Shops/TableRow/XXX}} templates where XXX represents a shop item are created using this template, with those then being used directly.
{{Shops/TableRow/XXX}} templates must be placed after the {{Shops/TableHeader}} template.
{{Shops/TableRow/XXX}} templates must be placed before a </table> tag (NOT |}!).

A mockup of a full table is shown below:
{{Shops/TableHeader}}
{{Shops/TableRow/ABC}}
{{Shops/TableRow/XYZ}}
</table>


There are mandatory parameters for this template which must be used when inserting it:

{{Shops/TableRow
 | ItemData              = Defaults to ""       if left blank            , otherwise as per editor input 
 | CostData              = Defaults to ""       if left blank            , otherwise as per editor input 
 | RequirementData       = Defaults to ""       if left blank            , otherwise as per editor input 
 | RefundData            = Defaults to ""       if left blank            , otherwise as per editor input 
}}

The various ***Data parameters determine the cell content in the row.


The following parameters will get used when wanting a 5-column row (the default is a 4-column row):

{{Shops/TableRow
 | NoteColumn            = Defaults to ""       if left blank (no column), otherwise input "Yes" for the Note column to appear
 | NoteData              = Defaults to ""       if left blank            , otherwise as per editor input 
}}

The NoteColumn parameter is the toggle used for adding the 5th column. Note that the input must be Yes, not yes or anything else.
The NoteData parameter determines the cell content in the 5th column.


Optional parameters for this template include:

{{ShopsTableRow
 | RowvAlignTop          = Defaults to "center" if left blank            , otherwise input "Yes" for "top"
 | RowOtherStyle         = Defaults to ""       if left blank            , otherwise as per editor input
 | RowOtherClass         = Defaults to ""       if left blank            , otherwise as per editor input
 | RowOtherHTML          = Defaults to ""       if left blank            , otherwise as per editor input
 | ItemAlignCenter       = Defaults to "left"   if left blank            , otherwise input "Yes" for "center"
 | ItemOtherStyle        = Defaults to ""       if left blank            , otherwise as per editor input
 | ItemOtherClass        = Defaults to ""       if left blank            , otherwise as per editor input
 | ItemOtherHTML         = Defaults to ""       if left blank            , otherwise as per editor input
 | NoteAlignLeft         = Defaults to "center" if left blank            , otherwise input "Yes" for "left"
 | NoteOtherStyle        = Defaults to ""       if left blank            , otherwise as per editor input
 | NoteOtherClass        = Defaults to ""       if left blank            , otherwise as per editor input
 | NoteOtherHTML         = Defaults to ""       if left blank            , otherwise as per editor input
 | CostAlignLeft         = Defaults to "center" if left blank            , otherwise input "Yes" for "left"
 | CostOtherStyle        = Defaults to ""       if left blank            , otherwise as per editor input
 | CostOtherClass        = Defaults to ""       if left blank            , otherwise as per editor input
 | CostOtherHTML         = Defaults to ""       if left blank            , otherwise as per editor input
 | RequirementAlignLeft  = Defaults to "center" if left blank            , otherwise input "Yes" for "left"
 | RequirementOtherStyle = Defaults to ""       if left blank            , otherwise as per editor input
 | RequirementOtherClass = Defaults to ""       if left blank            , otherwise as per editor input
 | RequirementOtherHTML  = Defaults to ""       if left blank            , otherwise as per editor input
 | RefundAlignLeft       = Defaults to "center" if left blank            , otherwise input "Yes" for "left"
 | RefundOtherStyle      = Defaults to ""       if left blank            , otherwise as per editor input
 | RefundOtherClass      = Defaults to ""       if left blank            , otherwise as per editor input
 | RefundOtherHTML       = Defaults to ""       if left blank            , otherwise as per editor input
}}

Should any of them be used very often, it may suggest that a revision to the base template is needed. Please submit a proposal to the other editors and decide if this change should be made.
DO NOT edit the base template unilaterally as this may cause the transclusion to break down.


For easy reference, the code transcluded by the template is:

  <tr style="vertical-align: {{ifeq|{{{RowvAlignTop|}}}|Yes|top|center}}; {{{RowOtherStyle|}}}" class="{{{RowOtherClass|}}}" {{{RowOtherHTML|}}}>
    <td style="text-align: {{ifeq|{{{ItemAlignCenter|}}}|Yes|center|left}}; {{{ItemOtherStyle|}}}" class="{{{ItemOtherClass|}}}" {{{ItemOtherHTML|}}}>{{{ItemData|}}}</td>
    {{ifeq|1={{{NoteColumn|}}}|2=Yes|3=<td style="text-align: {{ifeq|{{{NoteAlignLeft|}}}|Yes|left|center}}; {{{NoteOtherStyle|}}}" class="{{{NoteOtherClass|}}}" {{{NoteOtherHTML|}}}>{{{NoteData|}}}</td>|4=}}
    <td style="text-align: {{ifeq|{{{CostAlignLeft|}}}|Yes|left|center}}; {{{CostOtherStyle|}}}" class="{{{CostOtherClass|}}}" {{{CostOtherHTML|}}}>{{{CostData|}}}</td>
    <td style="text-align: {{ifeq|{{{RequirementAlignLeft|}}}|Yes|left|center}}; {{{RequirementOtherStyle|}}}" class="{{{RequirementOtherClass|}}}" {{{RequirementOtherHTML|}}}>{{{RequirementData|}}}</td>
    <td style="text-align: {{ifeq|{{{RefundAlignLeft|}}}|Yes|left|center}}; {{{RefundOtherStyle|}}}" class="{{{RefundOtherClass|}}}" {{{RefundOtherHTML|}}}>{{{RefundData|}}}</td>
  </tr>