]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/_form.html.erb
Merge remote-tracking branch 'upstream/pull/6134'
[rails.git] / app / views / diary_entries / _form.html.erb
1 <%= f.text_field :title %>
2 <%= f.richtext_field :body, :cols => 80, :rows => 20, :format => @diary_entry.body_format %>
3 <%= f.collection_select :language_code, Language.order(:english_name), :code, :name %>
4
5 <fieldset>
6   <legend><%= t ".location" -%></legend>
7
8   <svg class="d-none"><defs><%= render :partial => "layouts/control_icons", :locals => { :icons => %w[zoomin zoomout] } %></defs></svg>
9
10   <%= tag.div "", :id => "map", :class => "border border-secondary-subtle rounded mb-3 z-0", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
11
12   <div class="row mb-3">
13     <%= f.text_field :latitude, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "latitude" %>
14     <%= f.text_field :longitude, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "longitude" %>
15     <div class="col-sm-4 align-self-end pt-2">
16       <button type="button" id="usemap" class="btn btn-outline-primary"><%= t ".use_map_link" -%></button>
17     </div>
18   </div>
19 </fieldset>
20
21 <%= f.primary %>