Skip to content

Instantly share code, notes, and snippets.

@masonfmatthews
Created February 9, 2015 19:06
Show Gist options
  • Save masonfmatthews/0a28093441a63d392be0 to your computer and use it in GitHub Desktop.
Save masonfmatthews/0a28093441a63d392be0 to your computer and use it in GitHub Desktop.
View
<h1>Edit Tags for <%= @photo.name %></h1>
<%= form_tag update_tags_photo_path do %>
<ul>
<% @tags.each do |t| %>
<li>
<%= check_box_tag "tags[#{t.id}]", true, @photo.tags.include?(t) %>
<%= t.name %>
</li>
<% end %>
</ul>
<%= submit_tag "Save Tags" %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment