Jump to content

Syntax re IF Statements


Wayne B

Recommended Posts

Can someone assist with the correct syntax to display the correct coloured background based on Status of a particular issue in Pages in a 'Bug Tracker' type facility

{{if $formValue['new']}}
<span class="ipsBadge ipsBadge_style5">{$value}</span>
{{elseif $formValue['confirmed']}}
<span class="ipsBadge ipsBadge_style7">{$value}</span>
{{elseif $formValue['fixed']}}
<span class="ipsBadge ipsBadge_style6">{$value}</span>
{{elseif $formValue['closed']}}
<span class="ipsBadge ipsBadge_style2">{$value}</span>
{{endif}}

Im using the above but whilst the wording changes the background colour remains as ipsBadge_style5

Any help would be great

Thanks

Link to comment
Share on other sites

Ive worked it out thanks. If anyone needs it here you go

{{if $formValue == 'new'}}
<span class="ipsBadge ipsBadge_style2">{$value}</span>
{{elseif $formValue == 'confirmed'}}
<span class="ipsBadge ipsBadge_style7">{$value}</span>
{{elseif $formValue == 'fixed'}}
<span class="ipsBadge ipsBadge_style4">{$value}</span>
{{elseif $formValue == 'closed'}}
<span class="ipsBadge ipsBadge_style6">{$value}</span>
{{endif}}

 

Link to comment
Share on other sites

  • 10 months later...

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...