我正在使用 rails3、devise 和acts_as_votable
我根据他的投票情况准备了显示“书签”或“取消书签”的视图。
但我不知道该放什么。有人有想法吗?
<% if xxxxxxxxxxxx %> <= *when @community hasn't been voted by current_user*
<%= link_to t('.bookmark', :default => t("helpers.links.bookmark")),
bookmark_community_path(@community), :class => 'btn' %>
<% else %>
<%= link_to t('.unbookmark', :default => t("helpers.links.unbookmark")),
bookmark_community_path(@community), :class => 'btn-danger' %>
<% end %>