Skip to content

Instantly share code, notes, and snippets.

@eileencodes
Created January 12, 2012 14:37
Show Gist options
  • Save eileencodes/1600871 to your computer and use it in GitHub Desktop.
Save eileencodes/1600871 to your computer and use it in GitHub Desktop.
<div class="datetime">
<% if @post.user.nil? %>
No author specified
<% else %>
<%= @post.user.username %>
<% end %>
</div>
@mattherick
Copy link

You also can do:

<div class="datetime>
  <%= @post.user.nil? ? "No author specified" : @post.user.username %>
</div>

Bit shorter ;-)

@eileencodes
Copy link
Author

That is a lot shorter, thanks for the tip! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment