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