Files
fizzy/app/views/cards/container/_gild.html.erb
T
2025-08-07 15:28:45 -05:00

12 lines
429 B
Plaintext

<% if card.golden? %>
<%= button_to card_goldness_path(card), method: :delete, class: "btn btn--reversed tooltip" do %>
<%= icon_tag "golden-ticket" %>
<span class="for-screen-reader">Demote to normal</span>
<% end %>
<% else %>
<%= button_to card_goldness_path(card), class: "btn tooltip" do %>
<%= icon_tag "golden-ticket" %>
<span class="for-screen-reader">Promote to golden</span>
<% end %>
<% end %>