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

33 lines
1.4 KiB
Plaintext
Raw Normal View History

2009-06-03 21:30:09 +02:00
<% content_for :javascript do %>
2009-07-06 15:41:19 +02:00
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAA2ASeVD5kkQjUA-G_DcpW6xTYEJCoV24wtogQseyPWcfAg67ZQBRSqFfegsi4Rb7m5RD95qnEcX8gNg" type="text/javascript"></script>
2009-06-03 21:30:09 +02:00
<script src="/javascripts/tag/tag.js" type="text/javascript" charset="utf-8"></script>
<% end %>
2009-07-06 15:41:19 +02:00
<div id="map_canvas" style="width: 500px; height: 300px;float:right;border:4px solid black;"></div>
2009-06-03 21:30:09 +02:00
<%= 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-07-06 15:41:19 +02:00
<%= form.hidden_field :id %>
<%= form.hidden_field :latitude %>
<%= form.hidden_field :longitude %>
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 />
2009-07-06 15:41:19 +02:00
<%= form.text_field :tags, { :autocomplete => "off", :class => 'tag_list', :value => (@album.tags.map{|tag|tag.title}.join(" ") unless @album.tags.nil?) } %><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 %>