photomix/app/views/photos/_form.html.erb

14 lines
461 B
Plaintext
Raw Normal View History

2011-04-25 07:50:07 +02:00
<%= content_for :javascript do %>
2012-07-24 23:26:16 +02:00
<%= javascript_include_tag "tag/tag" -%>
2009-05-25 21:39:43 +02:00
<% end %>
2009-06-16 21:43:03 +02:00
<%= hidden_field_tag :all_tags, @tags %>
2009-05-25 21:39:43 +02:00
<%= form.label :title %><br />
<%= form.text_field :title %><br />
2012-07-24 23:26:16 +02:00
<br/>
2009-05-25 21:39:43 +02:00
<%= form.label :tag_list %><br />
2012-07-24 23:26:16 +02:00
<%= form.text_field :tag_list, {:autocomplete => "off", :class => 'tag_list'} %><br />
<br/>
<%= form.label :description %><br />
<%= form.text_area :description %><br />
2009-05-25 21:39:43 +02:00
<br/>
2012-07-24 23:26:16 +02:00
<p>On disk: ~/<%= @photo.attachment.path %></p>