jerett Posted April 28, 2008 Share Posted April 28, 2008 Greetings. I wanted to know if anyone would know the code on how you might change an image based upon ticket status. For example - if you had a customer-reply it would show a grayed out image and if you had an admin reply it would light up green. so on and so on. This is what I have at the moment. {if $ticket.status == "Answered"}<img src="images/unanswered.gif" alt="unanswered" />{else}<img src="images/answered.gif" alt="answered" />{/if} This doesn't seem to work. Any suggestions? Thanks, Jerett 0 Quote Link to comment Share on other sites More sharing options...
arhost Posted April 29, 2008 Share Posted April 29, 2008 Try this: {if $ticket.status eq "Answered"} <img src="images/unanswered.gif" alt="unanswered" /> {else} <img src="images/answered.gif" alt="answered" />{/if} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.