25 lines
856 B
Plaintext
25 lines
856 B
Plaintext
<% 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('\',\'')}'" %>
|
|
|
|
<%= form.label :title, :Title, {:class => 'big'} %><br />
|
|
<%= form.text_field :title, {:class => 'big'} %><br />
|
|
<%= form.label :description %><br />
|
|
<%= form.text_area :description %><br />
|
|
|
|
<%= 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", :class => 'tag_list'} %><br />
|
|
|
|
<br />
|
|
<% if @album.path? %>
|
|
Location on disk: <i><%= APP_CONFIG[:photos_path] + @album.path %></i><br/>
|
|
Contains: <%= @album.photos.count %> photos<br/>
|
|
<% end %> |