Posted April 4, 201510 yr 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_style5Any help would be greatThanks
April 4, 201510 yr 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}}
Archived
This topic is now archived and is closed to further replies.