diff --git a/app/views/admin/booths/index.html.haml b/app/views/admin/booths/index.html.haml
index fc3f3ba3..9eef8f96 100644
--- a/app/views/admin/booths/index.html.haml
+++ b/app/views/admin/booths/index.html.haml
@@ -4,9 +4,6 @@
%h1
Booths
= "(#{@booths.length})" if @booths.any?
- .pull-right
- - if can? :create, Booth
- = link_to 'Add Booth', new_admin_conference_booth_path(@conference.short_title), class: 'button btn btn-primary'
%p.text-muted
All the booth requests
@@ -74,3 +71,7 @@
%td
= link_to 'Edit', edit_admin_conference_booth_path(@conference.short_title, booth.id),
class: 'btn btn-primary'
+.row
+ .col-md-12.text-right
+ - if can? :create, Booth
+ = link_to 'New Booth', new_admin_conference_booth_path(@conference.short_title), class: 'button btn btn-primary'
diff --git a/app/views/admin/tracks/index.html.haml b/app/views/admin/tracks/index.html.haml
index 6ac42003..95eafcb3 100644
--- a/app/views/admin/tracks/index.html.haml
+++ b/app/views/admin/tracks/index.html.haml
@@ -78,4 +78,4 @@
style: ('border-top-left-radius: 0; border-bottom-left-radius: 0;' if special_style), params: { 'schedule[track_id]' => track.id }
.row
.col-md-12.text-right
- = link_to 'New Track', new_admin_conference_program_track_path(@conference.short_title), class: 'btn btn-success'
+ = link_to 'New Track', new_admin_conference_program_track_path(@conference.short_title), class: 'btn btn-primary'