-<h1><%= @title %></h1>
-
-<%= error_messages_for 'diary_entry' %>
-
-<% form_for :diary_entry do |f| %>
- <table class="diary_entry">
- <tr valign="top">
- <td class="fieldName"><%= t 'diary_entry.edit.subject' -%></td>
- <td><%= f.text_field :title, :size => 60 %></td>
- </tr>
- <tr valign="top">
- <td class="fieldName"><%= t 'diary_entry.edit.body' -%></td>
- <td><%= f.text_area :body, :cols => 80 %></td>
- </tr>
- <tr valign="top">
- <td class="fieldName"><%= t 'diary_entry.edit.language' -%></td>
- <td><%= f.collection_select :language_code, Language.find(:all, :order => :english_name), :code, :name %></td>
- </tr>
- <tr valign="top">
- <td class="fieldName"><%= t 'diary_entry.edit.location' -%></td>
- <td>
- <div id="map"></div>
- <span class="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" %></span>
- <a href="javascript:openMap()" id="usemap"><%= t 'diary_entry.edit.use_map_link' -%></a>
- <br/><br/>
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <%= submit_tag t('diary_entry.edit.save_button') %>
- <%# TODO: button should say 'publish' or 'save changes' depending on new/edit state %>
- </td>
- </tr>
- </table>
+<% content_for :head do %>
+ <%= javascript_include_tag "diary_entry" %>
<% end %>
-<% if @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 %>
+ <h1><%= @title %></h1>
<% end %>
-<%= javascript_include_tag '/openlayers/OpenLayers.js' %>
-<%= javascript_include_tag '/openlayers/OpenStreetMap.js' %>
-<%= javascript_include_tag 'map.js' %>
-
-<script type="text/javascript">
- <!--
- var marker;
-
- OpenLayers.Lang.setCode("<%= I18n.locale.to_s %>");
-
- function setLocation( e ) {
- closeMapPopup();
-
- var lonlat = getEventPosition(e);
-
- $("latitude").value = lonlat.lat;
- $("longitude").value = lonlat.lon;
-
- if (marker) {
- removeMarkerFromMap(marker);
- }
-
- marker = addMarkerToMap(lonlat, null, "<%= t 'diary_entry.edit.marker_text' -%>");
- }
-
- function openMap() {
- $("map").style.display = "block";
- $("usemap").style.display = "none";
-
- var centre = new OpenLayers.LonLat(<%= lon %>, <%= lat %>);
- var zoom = <%= zoom %>;
-
- var map = createMap("map");
-
- setMapCenter(centre, zoom);
+<%= error_messages_for 'diary_entry' %>
- map.events.register("click", map, setLocation);
- }
-// -->
-</script>
+<%= form_for :diary_entry do |f| %>
+ <div class="diary_entry standard-form">
+ <fieldset>
+ <div class='form-row'>
+ <label class="standard-label"><%= t 'diary_entry.edit.subject' -%></label>
+ <%= f.text_field :title, :class => "richtext_title" %>
+ </div>
+ <div class='form-row'>
+ <label class="standard-label"><%= t 'diary_entry.edit.body' -%></label>
+ <%= richtext_area :diary_entry, :body, :cols => 80, :rows => 20, :format => @diary_entry.body_format %>
+ </div>
+ <div class='form-row'>
+ <label class="standard-label"><%= t 'diary_entry.edit.language' -%></label>
+ <%= f.collection_select :language_code, Language.order(:english_name), :code, :name %>
+ </div>
+ </fieldset>
+ <fieldset class='location'>
+ <label class="standard-label"><%= t 'diary_entry.edit.location' -%></label>
+ <%= content_tag "div", "", :id => "map", :data => {:lat => @lat, :lon => @lon, :zoom => @zoom} %>
+ <div class='form-row clearfix'>
+ <div class='form-column'>
+ <label class="secondary standard-label"><%= t 'diary_entry.edit.latitude' -%></label>
+ <%= f.text_field :latitude, :size => 20, :id => "latitude" %>
+ </div>
+ <div class='form-column'>
+ <label class="secondary standard-label"><%= t 'diary_entry.edit.longitude' -%></label>
+ <%= f.text_field :longitude, :size => 20, :id => "longitude" %>
+ </div>
+ <div class='form-column'>
+ <a href="#" id="usemap"><%= t 'diary_entry.edit.use_map_link' -%></a>
+ </div>
+ </div>
+ </fieldset>
+
+ <% if action_name == 'new' %>
+ <%= submit_tag t('diary_entry.new.publish_button') %>
+ <% else %>
+ <%= submit_tag t('diary_entry.edit.save_button') %>
+ <% end %>
+ </div>
+<% end %>