Jump to content

Syntax re IF Statements

Featured Replies

Posted

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

  • Author

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}}

 

  • 10 months later...

Thanks so much for this, and for posting your answer. This helped me! :D

Archived

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

Recently Browsing 0

  • No registered users viewing this page.