Difference between revisions of "Templates"
Kevin Wang (talk | contribs) |
Kevin Wang (talk | contribs) |
||
Line 159: | Line 159: | ||
[[Template:dot]]<br> | [[Template:dot]]<br> | ||
{{dot}} | {{dot}} | ||
+ | |||
+ | ==Template:!== | ||
+ | Template for inserting a | inside of another template. Useful for adding optional rows to a table.<br>[[Template:!]] | ||
+ | |||
+ | <pre>{{if|test={{{variable_x|}}} | ||
+ | |then={{!}}- | ||
+ | {{!}}optional_row={{{variable_x|}}} | ||
+ | }}</pre> | ||
+ | |||
+ | In this example, the if statement checks if the variable_x has been assigned a value and then adds in one row (shown below) to the table with variable_x as a parameter. | ||
+ | |||
+ | <pre>|- | ||
+ | |optional_row={{{variable_x|}}}</pre> | ||
[[Category:Wiki maintenance]] | [[Category:Wiki maintenance]] | ||
[[Category:Original QBWiki Page]] | [[Category:Original QBWiki Page]] |
Revision as of 11:32, 23 December 2020
Put the code for all useful templates on here in the manner I have done.
Boxes
Template:Infobox
Name | |
200px | |
Noted subjects | Subjects |
Current college | schoolcur |
Past colleges | schoolpast |
High school | highschool |
Stats | HDWhite • NAQT |
Template for quizbowl player pages.
Template:Infobox
- See: Matt Weiner
Template:Pic
| |||
Above: Caption |
---|
Template for a picture with a caption.
Template:Pic
- See: Negstorm
Template:Collegebox
College Name | |
200px | |
---|---|
Location: citystate | |
Current President or Coach | president |
National championships | nats |
NAQT Page | link |
Template for use on college club pages.
Template:Collegebox
- See: Harvard
Template:Tourneybox
Tournament Name | |
---|---|
Edited by | editors |
Champion | champion |
Runner-up | second |
Third | third |
Fourth | fourth |
High scorer | scorer |
Site | site |
Field | |
Stats |
Template for use on pages for concluded tournaments.
Template:Tourneybox
- See: 2007 ACF Nationals
Template:College Nat TourneyBox
| ||
Champion | champion | |
Runner-up | second | |
Third | third | |
Fourth | fourth | |
High scorer | scorer | |
Undergrad Champion | undergrad | |
Undergrad Runner-up | undergradsecond | |
Undergrad High scorer | undergradscorer | |
Site | site | |
Field | field | |
Stats | stats |
Template for use on pages for concluded collegiate national championships.
Template:College Nat Tourneybox
- See: 2017 ICT
Template: Tourneybox short
| ||
Champion | champion | |
Runner-up | runner-up | |
Site | site | |
Date | date |
Template for tournaments listing only first and second place.
Template:Tourneybox short
- No known examples
Template:Upcoming
| ||
Date | date | |
Time | time | |
Location | location | |
Editor | editor | |
Contact: | ||
Format | format | |
First Discount Deadline | deadline1 | |
Second Discount Deadline | deadline2 | |
No Packet Penalty Deadline | deadline3 | |
First Penalty Deadline | deadline4 | |
Second Penalty Deadline | deadline5 |
Template for use on pages for upcoming tournaments.
Template:Upcoming
- No known examples
Template:Succession_box
For use on year-by-year team pages for teams who have won a particular tournament.
Template:Succession_box
- See: 2006 Byram Hills
| |||
|
|
Template:Browse box
For use on year-by-year concluded tournament pages.
Template:Browse box
- See: 2007 NAC
| ||
|
Template:Companybox
| ||||
President or CEO | president | |||
Location: | citystate | |||
Status | status |
Template for use on company pages.
Template:Companybox
- See: Play Quiz Bowl
General Use
Template:If
An if/then statement with optional else based on whether test parameter is null or not.
Template:If
{{if |test=VARIABLE_OR_PARAMETER_TO_TEST |then=code if 'test' is not empty |else=code if 'test' is empty (optional) }}
Template:Tl
Template for a shortened link to a template's page.
{{Tl}}
Template:dot
Template for a dot.
Template:dot
·
Template:!
Template for inserting a | inside of another template. Useful for adding optional rows to a table.
Template:!
{{if|test={{{variable_x|}}} |then={{!}}- {{!}}optional_row={{{variable_x|}}} }}
In this example, the if statement checks if the variable_x has been assigned a value and then adds in one row (shown below) to the table with variable_x as a parameter.
|- |optional_row={{{variable_x|}}}