From ecdaf7d45f0b384539ab3e93b8467cfe19811f71 Mon Sep 17 00:00:00 2001 From: pixeldesu Date: Sun, 30 Nov 2014 17:22:34 +0100 Subject: [PATCH] added buttons that don't do a thing yet --- app/views/shared/_answerbox.html.haml | 34 ++++++++++++++++++++------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/app/views/shared/_answerbox.html.haml b/app/views/shared/_answerbox.html.haml index f558aa0e..17cb533c 100644 --- a/app/views/shared/_answerbox.html.haml +++ b/app/views/shared/_answerbox.html.haml @@ -10,11 +10,29 @@ .panel-body %p= a.content - if @user.nil? - %p.text-muted - Answered by - %a{href: show_user_profile_path(a.user.screen_name)} - %img.img-rounded.img-answerbox-small{src: gravatar_url(a.user)} - %span= a.user.screen_name - - if privileged? a.user - %button.btn.btn-sm.btn-danger{name: 'ab-destroy', 'data-a-id' => a.id} - Delete \ No newline at end of file + .row + .col-md-6.col-sm-4.col-xs-12.text-left.text-muted + Answered by + %a{href: show_user_profile_path(a.user.screen_name)} + %img.img-rounded.img-answerbox-small{src: gravatar_url(a.user)} + %span= a.user.screen_name + .col-md-6.col-sm-8.col-xs-12.text-right.text-muted + x users smiled at this + %a.btn.btn-info.btn-sm + %i.fa.fa-smile + %a.btn.btn-primary.btn-sm + %i.fa.fa-comments + - if privileged? a.user + %button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id} + %i.fa.fa-trash-o + - else + .row + .col-md-6.col-md-offset-6.col-sm-8.col-sm-offset-4.col-xs-12.text-right.text-muted + x users smiled at this + %a.btn.btn-info.btn-sm + %i.fa.fa-smile + %a.btn.btn-primary.btn-sm + %i.fa.fa-comments + - if privileged? a.user + %button.btn.btn-danger.btn-sm{name: 'ab-destroy', 'data-a-id' => a.id} + %i.fa.fa-trash-o \ No newline at end of file