X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b25a468e3c0aeb868f46ea758d4cf33ad7890bcb..92d7a9f3fde4deac606025d16f2587b918158e15:/app/views/diary_entry/edit.html.erb diff --git a/app/views/diary_entry/edit.html.erb b/app/views/diary_entry/edit.html.erb index 8728427be..c49573bec 100644 --- a/app/views/diary_entry/edit.html.erb +++ b/app/views/diary_entry/edit.html.erb @@ -1,95 +1,48 @@ -

<%= @title %>

- -<%= error_messages_for 'diary_entry' %> - -<%= form_for :diary_entry do |f| %> - - - - - - - - - - - - - - - - - - - - - -
<%= t 'diary_entry.edit.subject' -%><%= f.text_field :title, :size => 60 %>
<%= t 'diary_entry.edit.body' -%><%= f.text_area :body, :cols => 80 %>
<%= t 'diary_entry.edit.language' -%><%= f.collection_select :language_code, Language.find(:all, :order => :english_name), :code, :name %>
<%= t 'diary_entry.edit.location' -%> -
- <%= t 'diary_entry.edit.latitude' -%> <%= f.text_field :latitude, :size => 20, :id => "latitude" %> <%= t 'diary_entry.edit.longitude' -%> <%= f.text_field :longitude, :size => 20, :id => "longitude" %> - <%= t 'diary_entry.edit.use_map_link' -%> -

-
- <%= submit_tag t('diary_entry.edit.save_button') %> - <%# TODO: button should say 'publish' or 'save changes' depending on new/edit state %> -
+<% content_for :head do %> + <%= javascript_include_tag "diary_entry" %> <% end %> -<% if @diary_entry.latitude and @diary_entry.longitude %> - <% lon = @diary_entry.longitude %> - <% lat = @diary_entry.latitude %> - <% zoom = '12' %> -<% elsif @user.home_lat.nil? or @user.home_lon.nil? %> - <% lon = h(params['lon'] || '-0.1') %> - <% lat = h(params['lat'] || '51.5') %> - <% zoom = h(params['zoom'] || '4') %> -<% else %> - <% lon = @user.home_lon %> - <% lat = @user.home_lat %> - <% zoom = '12' %> +<% content_for :heading do %> +

<%= @title %>

<% end %> -<%= javascript_include_tag '/openlayers/OpenLayers.js' %> -<%= javascript_include_tag '/openlayers/OpenStreetMap.js' %> -<%= javascript_include_tag 'map.js' %> - - +<%= form_for :diary_entry do |f| %> +
+
+
+ + <%= f.text_field :title, :class => "richtext_title" %> +
+
+ + <%= richtext_area :diary_entry, :body, :cols => 80, :rows => 20, :format => @diary_entry.body_format %> +
+
+ + <%= f.collection_select :language_code, Language.order(:english_name), :code, :name %> +
+
+
+ + <%= content_tag "div", "", :id => "map", :data => {:lat => @lat, :lon => @lon, :zoom => @zoom} %> +
+
+ + <%= f.text_field :latitude, :size => 20, :id => "latitude" %> +
+
+ + <%= f.text_field :longitude, :size => 20, :id => "longitude" %> +
+ +
+
+ + <%= submit_tag t('diary_entry.edit.save_button') %> + <%# TODO: button should say 'publish' or 'save changes' depending on new/edit state %> +
+<% end %>