diff --git a/app/views/layouts/_admin_sidebar.html.haml b/app/views/layouts/_admin_sidebar.html.haml
index 2c3eaf52..1c7bac9a 100644
--- a/app/views/layouts/_admin_sidebar.html.haml
+++ b/app/views/layouts/_admin_sidebar.html.haml
@@ -16,7 +16,7 @@
%span.fa.fa-cog
Manage
= conference.short_title
- - if (current_user.is_admin) || (current_user.has_role? :organizer, :any)
+ - if can? :new, Conference.new
%li
= link_to(new_admin_conference_path) do
%span.fa.fa-plus
diff --git a/app/views/layouts/_admin_sidebar_index.html.haml b/app/views/layouts/_admin_sidebar_index.html.haml
index 3844339b..01356f42 100644
--- a/app/views/layouts/_admin_sidebar_index.html.haml
+++ b/app/views/layouts/_admin_sidebar_index.html.haml
@@ -16,7 +16,7 @@
%span.fa.fa-cog
Manage
= conference.short_title
- - if can? :create, Conference
+ - if can? :new, Conference.new
%li
= link_to(new_admin_conference_path) do
%span.fa.fa-plus
diff --git a/app/views/layouts/_user_menu.html.haml b/app/views/layouts/_user_menu.html.haml
index 01432b3c..38a96b08 100644
--- a/app/views/layouts/_user_menu.html.haml
+++ b/app/views/layouts/_user_menu.html.haml
@@ -28,10 +28,10 @@
= link_to(admin_conferences_path()) do
%span.fa.fa-home
Administration
- - if can? :create, Conference
+ - if can? :new, Conference.new
=link_to(new_admin_conference_path) do
%span.fa.fa-plus
- Create Conference
+ New Conference
-if @conference and @conference.id and can? :show, @conference
%li
= link_to(admin_conference_path(@conference.short_title)) do