Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Template:PlanItem"

Line 2: Line 2:
 
Displays information about a plan item
 
Displays information about a plan item
  
{{Usage|<pre>{{PlanItem|Name|123|Status}}</pre>|2={{PlanItem|Name|123|Status}}}}
+
 
{{Usage|<pre>{{PlanItem|Name|123|Complete}}</pre>|2={{PlanItem|Name|123|InProgress}}}}
+
{| cellpadding="5" border="1"
{{Usage|<pre>{{PlanItem|Name||Status}}</pre>|2={{PlanItem|Name||Status}}}}
+
! Markup !! Rendering
{{Usage|<pre>{{PlanItem|Name|123|}}</pre>|2={{PlanItem|Name|123|}}}}
+
|-
{{Usage|<pre>{{PlanItem|Name||}}</pre>|2={{PlanItem|Name||}}}}
+
| {{codeblock|<pre>{{PlanItem|Name||}}</pre>}}
 +
| {{PlanItem|Name||}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name||Status}}</pre>}}
 +
| {{PlanItem|Name||Status}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123}}</pre>}}
 +
| {{PlanItem|Name|123}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123|Investigate}}</pre>}}
 +
| {{PlanItem|Name|123|Investigate}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123|InProgress}}</pre>}}
 +
| {{PlanItem|Name|123|InProgress}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123|Complete}}</pre>}}
 +
| {{PlanItem|Name|123|Complete}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123|Dropped}}</pre>}}
 +
| {{PlanItem|Name|123|Dropped}}
 +
|-
 +
| {{codeblock|<pre>{{PlanItem|Name|123|Custom Status}}</pre>}}
 +
| {{PlanItem|Name|123|Status}}
 +
|}
  
 
[[Image:Progress.gif]] InProgress
 
[[Image:Progress.gif]] InProgress
Line 14: Line 37:
 
</noinclude>
 
</noinclude>
 
<includeonly>
 
<includeonly>
{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | INPROGRESS | [[Image:Progress.gif]]}}}}
+
{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | INPROGRESS | [[Image:Progress.gif]]}}}}{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | INVESTIGATE | [[Image:Glass.gif]]}}}}{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | COMPLETE | [[Image:Ok_green.gif]]}}}}{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | DROPPED | [[Image:Error.gif]]}}}}
{{#if:{{{3|}}}|{{#ifeq: {{uc:{{{3}}}}} | INVESTIGATE | [[Image:Glass.gif]]}}}}
+
 
'''{{{1}}}'''<br>
 
'''{{{1}}}'''<br>
{{#if:{{{2|}}}|[https://bugs.eclipse.org/{{{2}}} '''{{{2}}}''']}}
+
{{#if:{{{2|}}}|[https://bugs.eclipse.org/{{{2}}} '''{{{2}}}''']}}{{#if:{{{3|}}}|({{{3}}})<br>}}
{{#if:{{{3|}}}|({{{3}}})<br>}}
+
 
</includeonly>
 
</includeonly>

Revision as of 13:30, 17 September 2009

Displays information about a plan item


Markup Rendering
{{PlanItem|Name||}}

Chkbox disabled.gif Name

{{PlanItem|Name||Status}}
Name 
{{PlanItem|Name|123}}

Chkbox disabled.gif Name (123)

{{PlanItem|Name|123|Investigate}}

Glass.gif Name (123)

{{PlanItem|Name|123|InProgress}}

Progress.gif Name (123)

{{PlanItem|Name|123|Complete}}

Ok green.gif Name (123)

{{PlanItem|Name|123|Dropped}}

Error.gif Name (123)

{{PlanItem|Name|123|Custom Status}}
Name (123)

Progress.gif InProgress Glass.gif Investigate



Back to the top