]> git.openstreetmap.org Git - rails.git/blob - app/views/changeset_subscriptions/_heading.html.erb
Exclude `opening_hours` from semicolon splitting in tags helper (#6968)
[rails.git] / app / views / changeset_subscriptions / _heading.html.erb
1 <%# locals: (changeset:) %>
2
3 <% title = changeset.comment || t(".title", :id => changeset.id) -%>
4 <div class="mb-3">
5   <div class="row">
6     <div class="col-auto">
7       <%= user_thumbnail changeset.user %>
8     </div>
9     <div class="col">
10       <h2><%= link_to title, changeset %></h2>
11     </div>
12   </div>
13
14   <small class="text-body-secondary">
15     <%= t(".created_by_html", :link_user => link_to(changeset.user.display_name, changeset.user), :created => l(changeset.created_at, :format => :blog)) %>
16   </small>
17 </div>