jeromegn / slang

Slim-inspired templating language for Crystal
MIT License
236 stars 30 forks source link

How to do ternary conditional statement? #51

Closed AxDSan closed 5 years ago

AxDSan commented 5 years ago

Not really an issue, but I would like to know how to achieve this, is it even possible?

I was thinking: span.tag.#{game_server.status == "online" ? "online" : "offline"} = game_server.status

but i don't even know...

AxDSan commented 5 years ago

nvm I was able to achieve this by doing:

td class="tag #{game_server.status == "Online" ? "online" : "offline"}" = game_server.status