Created
February 9, 2015 19:06
-
-
Save masonfmatthews/0a28093441a63d392be0 to your computer and use it in GitHub Desktop.
View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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