This enables forms to be converted one-by-one to bootstrap. Without this refactoring, these global styles interfere with form control styling from bootstrap. The rearrangement of the search and directions styling is to solve CSS selector specitivity issues.
52 lines
2.5 KiB
Text
52 lines
2.5 KiB
Text
<% content_for :heading do %>
|
|
<h2><%= t ".heading", :name => @trace.name %></h2>
|
|
<% end %>
|
|
|
|
<img src="<%= url_for :controller => "traces", :action => "picture", :id => @trace.id, :display_name => @trace.user.display_name %>">
|
|
|
|
<%= form_for @trace do |f| %>
|
|
|
|
<div id='edit-trace-form' class='standard-form'>
|
|
<fieldset>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".filename" %></label>
|
|
<p class='deemphasize'><%= @trace.name %> (<%= link_to t(".download"), trace_data_path(@trace) %>)</p>
|
|
</div>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".uploaded_at" %></label>
|
|
<p class='deemphasize'><%= l @trace.timestamp, :format => :friendly %></p>
|
|
</div>
|
|
<% if @trace.inserted? %>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".points" %></label>
|
|
<p class='deemphasize'><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %></p>
|
|
</div>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".start_coord" %></label>
|
|
</div>
|
|
<div class="geo">
|
|
<span class="latitude"><%= @trace.latitude %></span>;
|
|
<span class="longitude"><%= @trace.longitude %></span>
|
|
</div>
|
|
(<%= link_to t(".map"), :controller => "site", :action => "index", :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%= link_to t(".edit"), :controller => "site", :action => "edit", :gpx => @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)
|
|
<% end %>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".owner" %></label>
|
|
<p class='deemphasize'><%= link_to @trace.user.display_name, user_path(@trace.user) %></p>
|
|
</div>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".description" %></label>
|
|
<%= f.text_field :description %>
|
|
</div>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".tags" %></label>
|
|
<%= f.text_field :tagstring %> (<%= t ".tags_help" %>)
|
|
</div>
|
|
<div class='standard-form-row'>
|
|
<label class='standard-label'><%= t ".visibility" %></label>
|
|
<%= f.select :visibility, [[t("traces.visibility.private"), "private"], [t("traces.visibility.public"), "public"], [t("traces.visibility.trackable"), "trackable"], [t("traces.visibility.identifiable"), "identifiable"]] %> (<a href="<%= t ".visibility_help_url" %>"><%= t ".visibility_help" %></a>)
|
|
</div>
|
|
</fieldset>
|
|
<%= f.submit %>
|
|
</div>
|
|
<% end %>
|