mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
<%
|
|
if content.favorite?
|
|
icon = 'star'
|
|
action = 'Unfavorite'
|
|
else
|
|
icon = 'star_border'
|
|
action = 'Favorite'
|
|
end
|
|
%>
|
|
|
|
<% if content.persisted? && user_signed_in? && content.user == current_user %>
|
|
<i class="material-icons right yellow-text favorite-button tooltipped"
|
|
data-tooltip="<%= action %> this page"
|
|
data-content-id="<%= content.id %>"
|
|
data-content-class="<%= content.class.name.downcase.pluralize %>">
|
|
<%= icon %>
|
|
</i>
|
|
<% end %>
|