<%= yield %>
<% if num_changes %>
<%= tag.span :class => ["d-flex align-items-baseline gap-1", { "opacity-50" => num_changes.zero? }],
:title => t(".changes", :count => num_changes) do %>
<%= num_changes %>
<% end %>
<% end %>
<% if num_comments %>
<%= tag.span :class => ["changeset_num_comments d-flex align-items-baseline gap-1 justify-content-end", { "opacity-50" => num_comments.zero? }],
:title => t(".comments", :count => num_comments) do %>
<%= num_comments %>
<% end %>
<% end %>