]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_tag_details.html.erb
Isolate object names from the database with a <bdi> tag
[rails.git] / app / views / browse / _tag_details.html.erb
index cd087bc7feba1c03b7869ba2b73b90c0ed45ae12..16e3b51b2865b156558eb93d271a49b43382aba8 100644 (file)
@@ -1,8 +1,6 @@
-<% unless tag_details.tags.empty? %>
-  <div class='browse-section'>
-    <h4><%= t'browse.tag_details.tags' %></h4>
-    <ul class='browse-tag-list'>
-      <%= render :partial => "tag", :collection => tag_details.tags.sort %>
-    </ul>
-  </div>
+<% unless tag_details.empty? %>
+  <h4><%= t 'browse.tag_details.tags' %></h4>
+  <table class='browse-tag-list'>
+    <%= render :partial => "tag", :collection => tag_details.sort %>
+  </table>
 <% end %>
 <% end %>