From 0bc9ede6ffd81d4aa2237d066d64cdb5e901fec4 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 27 Jul 2022 13:09:37 +0100 Subject: [PATCH] Use th tags on trace show table This brings consistency with other similar tables --- app/views/traces/show.html.erb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/views/traces/show.html.erb b/app/views/traces/show.html.erb index a8f9c5967..69f58b5b8 100644 --- a/app/views/traces/show.html.erb +++ b/app/views/traces/show.html.erb @@ -12,19 +12,19 @@ - + - + <% if @trace.inserted? %> - + - + <% end %> - + - + - + - +
<%= t ".filename" %><%= t ".filename" %> <%= @trace.name %> (<%= link_to t(".download"), trace_data_path(@trace) %>)
<%= t ".uploaded" %><%= t ".uploaded" %> <%= l @trace.timestamp, :format => :friendly %>
<%= t ".points" %><%= t ".points" %> <%= number_with_delimiter(@trace.size) %>
<%= t ".start_coordinates" %><%= t ".start_coordinates" %>
<%= t ".coordinates_html", @@ -35,15 +35,15 @@
<%= t ".owner" %><%= t ".owner" %> <%= link_to @trace.user.display_name, user_path(@trace.user) %>
<%= t ".description" %><%= t ".description" %> <%= @trace.description %>
<%= t ".tags" %><%= t ".tags" %> <% unless @trace.tags.empty? %> <%= safe_join(@trace.tags.collect { |tag| link_to tag.tag, :controller => "traces", :action => "index", :tag => tag.tag, :id => nil }, ", ") %> @@ -53,7 +53,7 @@
<%= t ".visibility" %><%= t ".visibility" %> <%= t "traces.visibility.#{@trace.visibility}" %>
-- 2.43.2