%= if @stats == [] do %>
:o personne ne boit
<% end %>
<%= for {nick, status} <- @stats do %>
- <%= nick %> <%= status.user_status %> - <%= status.trend_symbol %> <%= status.active %> g/l
— 15m: <%= status.active15m %> g/l - 30m: <%= status.active30m %> g/l - 1h: <%= status.active1h %> g/l
— dernier verre: <%= status.last_type %> <%= status.last_descr %> (<%= status.last_points %>)
<%= LSGWeb.LayoutView.format_time(status.last_at) %>
— sobre dans: <%= status.sober_in_s %>
— aujourd'hui: <%= status.daily_volumes %> points, <%= status.daily_gl %> g/l
<% 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)}"), ", ") %>
date |
nick |
points |
nom |
<%= for {{{account, date}, points, _, nom, comment}, nick} <- @drinks do %>
<% date = DateTime.from_unix!(date, :millisecond) %>
<%= LSGWeb.LayoutView.format_time(date, false) %> |
<%= nick %> |
<%= Float.round(points+0.0, 5) %> |
<%= nom||"" %> <%= comment||"" %> |
<% end %>
<% end %>
<%= if @conn.assigns.account && (@network || @channel) do %>
<%= link("alcoolog global", to: alcoolog_path(@conn, :index)) %>
<% end %>