Created
June 24, 2010 02:42
-
-
Save pelargir/450904 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if @user.role == "ADMIN" -%> | |
<span class="admin">Welcome Admin</span> | |
<% elsif @user.role == "USER" -%> | |
<span class="user">Welcome User</span> | |
<% else -%> | |
<span class="peon">Welcome Peon</span> | |
<% end -%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span class="<%= @user.role.downcase %>"> | |
Welcome <%= @user.role.humanize %> | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment