%p Welcome to the the ubiquitous administration panel!
%p Stats:
%ul
  %li
    %strong Blog posts:
    = Blog.count
  %li
    %strong Approved comments:
    = Comment.where(status: :published).count
  %li
    %strong Filtered comments:
    = Global.get_filtered_comments
  %li
    %strong Quotes:
    = Quote.count
  %li
    %strong Votes:
    = Vote.count
    (+#{Vote.where(upvote: true).count} / -#{Vote.where(upvote: false).count})