]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/issues/show.html.erb
Re-introduce additional round trip for verifying auth_provider
[rails.git] / app / views / issues / show.html.erb
index 71b5b40f6fef543d58d2128833f3627c90dc4b97..ad463c259320daa443ac57d4836a2faf30d4059a 100644 (file)
@@ -9,16 +9,19 @@
     <% else %>
       | <%= t ".no_reports" %>
     <% end %>
-      | <%= t ".report_created_at",
-              :datetime => l(@issue.created_at.to_datetime, :format => :friendly) %>
+      | <%= t ".report_created_at_html",
+              :datetime => tag.time(l(@issue.created_at.to_datetime, :format => :friendly),
+                                    :datetime => @issue.created_at.xmlschema) %>
     <% if @issue.resolved_at? %>
-      | <%= t ".last_resolved_at",
-              :datetime => l(@issue.resolved_at.to_datetime, :format => :friendly) %>
+      | <%= t ".last_resolved_at_html",
+              :datetime => tag.time(l(@issue.resolved_at.to_datetime, :format => :friendly),
+                                    :datetime => @issue.resolved_at.xmlschema) %>
     <% end %>
     <% if @issue.user_updated %>
-      | <%= t ".last_updated_at",
-              :datetime => l(@issue.updated_at.to_datetime, :format => :friendly),
-              :displayname => @issue.user_updated.display_name %>
+      | <%= t ".last_updated_at_html",
+              :datetime => tag.time(l(@issue.updated_at.to_datetime, :format => :friendly),
+                                    :datetime => @issue.updated_at.xmlschema),
+              :displayname => link_to(@issue.user_updated.display_name, @issue.user_updated) %>
     <% end %>
   </small>
 </p>
@@ -42,7 +45,7 @@
     <h3><%= t ".reports_of_this_issue" %></h3>
 
     <% if @read_reports.present? %>
-    <div class="bg-light text-muted">
+    <div class="bg-body-tertiary text-muted">
       <h4><%= t ".read_reports" %></h4>
       <%= render "reports", :reports => @read_reports %>
     </div>