Rails 3 の使用。これはフロントエンドの設計に関する質問です。
ゴール:
Contact | Email | URL
show.html.erb:
<% if !@shop.contact.blank? %>
<%= @shop.contact %>
<% end %>
<% if !@shop.email.blank? %>
<%= @shop.email %>
<% end %>
<% if !@shop.url.blank? %>
<%= link_to @shop.url, @shop.url, :target => "_blank" %>
<% end %>
|
前と後の要素に値がある場合にのみ入れるにはどうすればよいですか? 現段階では、値が無ければ何も出力されません。
どうもありがとう。