tab/app/views/pages/landing.html.haml

22 lines
622 B
Plaintext
Raw Normal View History

%h1 Tab!
%h2 Authentication
2015-09-08 14:19:48 +00:00
- if user_signed_in?
%p Yeah! Je bent ingelogd.
- else
Log een keer in!
%p= link_to "Log in met Zeus WPI", user_omniauth_authorize_path(:zeuswpi)
%h2 Cute Little Statistics
2015-09-11 16:04:45 +00:00
%p None here yet.
%h2 Wall of Shame
2015-09-11 21:32:38 +00:00
%table
%thead
%th People who should be ashamed
%th Part of total debt to Zeus
%tbody
- @statistics.shameful_users.each do |user|
%tr
%td= "Shame on #{user.name}"
// Won't divide by zero because there won't be any users with
// a shameful debt if the total debt is zero.
%td= "#{100 * user.balance / @statistics.total_debt}%"