<% if user_signed_in? %>
A
<% end %>
ログインしているなら、Aを表示させる
<% if user_signed_in? && current_user.id == @tweet.user_id %>
B
<% end %>
ログインしていて、かつあなたのuser.idがそのツイートをしたuserのidと一致していたら(あなたがそのツイートの投稿主なら) Bを表示させる。
Go to list of users who liked
More than 3 years have passed since last update.
<% if user_signed_in? %>
A
<% end %>
ログインしているなら、Aを表示させる
<% if user_signed_in? && current_user.id == @tweet.user_id %>
B
<% end %>
ログインしていて、かつあなたのuser.idがそのツイートをしたuserのidと一致していたら(あなたがそのツイートの投稿主なら) Bを表示させる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked