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

19 lines
607 B
Plaintext
Raw Normal View History

2009-06-02 00:08:57 +02:00
<%= form.label :title, :Title, {:class => 'big'} %><br />
<%= form.text_field :title, {:class => 'big'} %><br />
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 />
<%= form.label :tag_list %><br />
<%= form.text_field :tag_list, { :autocomplete => "off"} %><br />
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 %>