If a person checkmarks the boolean :someday how can we trigger the conditional?
<%= simple_form_for(@challenge, html: { data: { modal: true } }) do |f| %>
<%= f.check_box :someday %> # If checkmarked show first condition else show second condition
<% if :someday == true %> # How to Write this line?
<%= link_to 'Visit London', create_challenge_path(challenge: {name: 'Visit London', categorization: 'adventure', category: 'goal'}), class: "featured-challenge" %>
<% else %>
<%= button_tag(type: 'submit', class: "btn", id: "challenge-button") do %>
Save
<% end %>
<% end %>