<%= if @stats == [] do %> :o personne ne boit <% end %> <%= if @stats == %{} do %> ... et personne n'a bu :o :o :o <% else %>

top consommateur par volume, les 7 derniers jours: <%= Enum.intersperse(for({nick, count} <- @top, do: "#{nick}: #{Float.round(count,4)}"), ", ") %>

<%= for {{{account, date}, points, _, nom, comment}, nick} <- @drinks do %> <% date = DateTime.from_unix!(date, :millisecond) %> <% end %>
date nick points nom
<%= LSGWeb.LayoutView.format_time(date, false) %> <%= nick %> <%= Float.round(points+0.0, 5) %> <%= nom||"" %> <%= comment||"" %>
<% end %> <%= if @conn.assigns.account && (@network || @channel) do %> <%= link("alcoolog global", to: alcoolog_path(@conn, :index)) %> <% end %>