Factor out FontAwesome icons into a set of helpers. This is so that it's easier to keep track of which icons we're using and easier to change icons globally.
15 lines
412 B
Plaintext
15 lines
412 B
Plaintext
<%-
|
|
# vote
|
|
# forum_post
|
|
%>
|
|
|
|
<li class="vote-score-<%= vote.vote_type %>">
|
|
<% if policy(forum_post).votable? && vote.creator_id == CurrentUser.id %>
|
|
<%= link_to forum_post_vote_icon(vote), forum_post_vote_path(vote, format: "js"), remote: true, method: :delete %>
|
|
<%= link_to_user vote.creator %>
|
|
<% else %>
|
|
<%= forum_post_vote_icon(vote) %>
|
|
<%= link_to_user vote.creator %>
|
|
<% end %>
|
|
</li>
|