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

27 lines
966 B
Plaintext
Raw Normal View History

2009-06-03 21:30:09 +02:00
<% content_for :javascript do %>
<script src="/javascripts/tag/tag.js" type="text/javascript" charset="utf-8"></script>
<% end %>
<%= hidden_field_tag :all_tags, "'#{Tag.find(:all).map { |tag| tag.title }.join('\',\'')}'" %>
2009-06-30 22:41:27 +02:00
<%= hidden_field_tag :collection_id, params[:collection_id] %>
2009-06-03 21:30:09 +02:00
2009-06-02 00:08:57 +02:00
<%= form.label :title, :Title, {:class => 'big'} %><br />
<%= form.text_field :title, {:class => 'big'} %><br />
2009-06-30 22:41:27 +02:00
2009-05-25 21:39:43 +02:00
<%= form.label :description %><br />
<%= form.text_area :description %><br />
2009-06-02 00:08:57 +02:00
<%= form.label :address %><br />
<%= form.text_area :address, { :rows => 3} %><br />
<%= form.label :note %><br />
<%= form.text_area :note %><br />
2009-06-18 15:38:37 +02:00
<%= form.label :tags %><br />
<%= form.text_field :tags, { :autocomplete => "off", :class => 'tag_list', :value => @album.tags.map{|tag|tag.title}.join(" ") } %><br />
2009-06-02 00:08:57 +02:00
2009-05-22 21:04:41 +02:00
<br />
2009-06-02 00:08:57 +02:00
<% if @album.path? %>
2009-05-25 21:39:43 +02:00
Location on disk: <i><%= APP_CONFIG[:photos_path] + @album.path %></i><br/>
2009-06-02 00:08:57 +02:00
Contains: <%= @album.photos.count %> photos<br/>
<% end %>