diff --git a/app/views/admin/conference/show.html.haml b/app/views/admin/conference/show.html.haml
index f450023e..de745de6 100644
--- a/app/views/admin/conference/show.html.haml
+++ b/app/views/admin/conference/show.html.haml
@@ -1,12 +1,12 @@
%h1
- %span.glyphicon.glyphicon-dashboard
+ %span.fa.fa-tachometer
Dashboard for #{@conference.title}
%hr
.row
.col-sm-4
.dashbox.text-center
.icon
- %i.glyphicon.glyphicon-star
+ %i.fa.fa-user.fa-lg
.text
%label.text-muted total registrations: #{@total_reg}
%label.text-muted new registrations: #{@new_reg}
@@ -15,7 +15,7 @@
.col-sm-4
.dashbox.text-center
.icon
- %i.glyphicon.glyphicon-comment
+ %i.fa.fa-check-square.fa-lg
.text
%label.text-muted total submissions: #{@total_submissions}
%label.text-muted new submissions: #{@new_submissions}
@@ -24,7 +24,7 @@
.col-sm-4
.dashbox.text-center
.icon
- %i.glyphicon.glyphicon-user
+ %i.fa.fa-file-text.fa-lg
.text
%label.text-muted program: #{@program_length} min
%label.text-muted new program: #{@new_program_length} min
@@ -61,11 +61,11 @@
%ul.nav.nav-tabs#doughnut_tabs
%li.active
%a{:href=>"#distribution_all", "data-toggle"=>"tab"}
- %span.glyphicon.glyphicon-star
+ %span.fa.fa-star
All
%li
%a{:href=>"#distribution_confirmed", "data-toggle"=>"tab"}
- %span.glyphicon.glyphicon-comment
+ %span.fa.fa-comment
Confirmed
.tab-content
.tab-pane.active#distribution_all
@@ -90,11 +90,11 @@
%ul.nav.nav-tabs#recentTable
%li.active
%a{:href=>"#recent_reg", "data-toggle"=>"tab"}
- %span.glyphicon.glyphicon-star
+ %span.fa.fa-user
Recent Registrations
%li
%a{:href=>"#recent_submissions", "data-toggle"=>"tab"}
- %span.glyphicon.glyphicon-comment
+ %span.fa.fa-file-text
Recent Submissions
.tab-content
.tab-pane.active#recent_reg
@@ -107,7 +107,7 @@
.col-md-12
%h3
%span
- %i.glyphicon.glyphicon-flag
+ %i.fa.fa-flag
Campaigns
= render partial: 'campaigns', locals: {campaigns: @campaigns, name: 'campaigns'}