Difference between revisions of "Template:Honor index"
DesignerThan (talk | contribs) |
DesignerThan (talk | contribs) (useing the template YearOrUnknown also for the skill level (maybe we should rename the template to ValueOrUnknown but I don't know where it get's used)) |
||
Line 3: | Line 3: | ||
<!-- initialize the variables --> | <!-- initialize the variables --> | ||
{{#vardefine:selectedcolumns|{{{columnselection|:honorname:insignia:category:authority:skill:year}}}}} | {{#vardefine:selectedcolumns|{{{columnselection|:honorname:insignia:category:authority:skill:year}}}}} | ||
− | {{#vardefine:tablerow|}}{{#vardefine:tableheader|}}{{#vardefine:i|1}}{{#while: <!-- we need to start at word 1 because of the leading : -->|{{#if:{{#explode:{{#var:selectedcolumns}}|:|{{#var:i}}}}|true}}|{{#vardefine:tablerow|{{#var: tablerow}}{{#switch:{{#explode:{{#var: selectedcolumns }}|:|{{#var:i}}}}|honorname=data-sort-value=²{GetHonorName¦page=%PAGE%}²¦[[%PAGE%¦²{GetHonorName¦page=%PAGE%}²]],|insignia=²{GetInsigniaThumb¦insignia=%%}²,|category=align="left"¦²{Localize¦%%}²,|authority=align="center"¦²{division honor¦²{division abbrev¦%%}²}²,|skill=align="center" | + | {{#vardefine:tablerow|}}{{#vardefine:tableheader|}}{{#vardefine:i|1}}{{#while: <!-- we need to start at word 1 because of the leading : -->|{{#if:{{#explode:{{#var:selectedcolumns}}|:|{{#var:i}}}}|true}}|{{#vardefine:tablerow|{{#var: tablerow}}{{#switch:{{#explode:{{#var: selectedcolumns }}|:|{{#var:i}}}}|honorname=data-sort-value=²{GetHonorName¦page=%PAGE%}²¦[[%PAGE%¦²{GetHonorName¦page=%PAGE%}²]],|insignia=²{GetInsigniaThumb¦insignia=%%}²,|category=align="left"¦²{Localize¦%%}²,|authority=align="center"¦²{division honor¦²{division abbrev¦%%}²}²,|skill=align="center"¦²{YearOrUnknown¦%%}²,|year=align="center"¦²{YearOrUnknown¦%%}²,}}}} |
{{#vardefine: tableheader|{{#var:tableheader}}{{#switch:{{#explode:{{#var:selectedcolumns}}|:|{{#var:i}}}}|honorname=,{{Localize|Honor}}|insignia=,{{Localize|Patch}}|category=,{{Localize|Category}}|authority=,{{Localize|Approval}}|skill=,{{Localize|Skill Level}}|year=,{{Localize|Year}}}}}}{{#vardefine:i|{{#expr:{{#var:i}}+1}}}}}}<nowiki /> | {{#vardefine: tableheader|{{#var:tableheader}}{{#switch:{{#explode:{{#var:selectedcolumns}}|:|{{#var:i}}}}|honorname=,{{Localize|Honor}}|insignia=,{{Localize|Patch}}|category=,{{Localize|Category}}|authority=,{{Localize|Approval}}|skill=,{{Localize|Skill Level}}|year=,{{Localize|Year}}}}}}{{#vardefine:i|{{#expr:{{#var:i}}+1}}}}}}<nowiki /> | ||
<!-- that loops through all arguments with the prefix cat and saves it into a variable --> | <!-- that loops through all arguments with the prefix cat and saves it into a variable --> |
Revision as of 18:29, 3 August 2021
Honor | Patch | Approval | Skill Level | Year |
---|---|---|---|---|
Fabric Yo-Yo | 1 | 2012 | ||
Music - Beginners | 1 | Unknown | ||
Papercraft | 1 | 2012 |
Honor | Patch | Category | Approval | Skill Level | Year |
---|---|---|---|---|---|
Fabric Yo-Yo | Arts, Crafts and Hobbies | 1 | 2012 | ||
Music - Beginners | Arts, Crafts and Hobbies | 1 | Unknown | ||
Papercraft | Arts, Crafts and Hobbies | 1 | 2012 |
This template creates a table view, containing the honors in this wiki. The columns shown can be modified also it can be defined which categories should be included and which excluded.
It is very complex so I try to explain what is going on. First in the template we create the needed variables for defining the table (text's of the header, wanted columns, row template). After we did that magic, we have the magic that enables the template to have a dynamic count of needed (included) categories.
That is the whole preparation. Now we only let DPL do it's magic and a nice table will be created... hopefully ;)Parameter | Description | Type | Status | |
---|---|---|---|---|
Shown columns (and order) | columnselection | This defines the shown columns and the order of those. Each column needs to be separated by a ":" and it needs to be started with a ":". Possible columns are: honorname, insignia, category, authority, skill, year
| Unknown | optional |
First excluded Category | excat1 | The honor isn't allowed to be in that category.
| Unknown | optional |
Second excluded Category | excat2 | The honor isn't allowed to be in that category.
| Unknown | optional |
Third excluded Category | excat3 | The honor isn't allowed to be in that category.
| Unknown | optional |
Fourth excluded Category | excat4 | The honor isn't allowed to be in that category.
| Unknown | optional |
Fifth excluded Category | excat5 | The honor isn't allowed to be in that category.
| Unknown | optional |
Included Category | catn | This category needs to be included. The n needs to be replaced with an upcounting number, that way it is possible to add multiple categories. An honor included in the list needs to have every added category. For example add those arguments: cat1=mycategory1|cat2=mycategory2 and so on.
| Unknown | optional |