diff --git a/app/controllers/services_controller.rb b/app/controllers/services_controller.rb
index 578faf4fdfeee44dc6688ae4da98feec13f87775..f0e33f4682b7bd8e1a81b5e71cae3a1d792de4a3 100644
--- a/app/controllers/services_controller.rb
+++ b/app/controllers/services_controller.rb
@@ -52,6 +52,12 @@ class ServicesController < ApplicationController
   end
 
   def inviter
+    if current_user.invites == 0
+      flash[:error] = I18n.t 'invitations.create.no_more'
+      redirect_to :back
+      return
+    end
+
     @uid = params[:uid]
 
     if i_id = params[:invitation_id]
diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml
index 637bcdb096efec52e8c099ad050e7ace5f017ff4..835b179af48a2b1129f2727f6179addc754aa6b3 100644
--- a/app/views/aspects/index.html.haml
+++ b/app/views/aspects/index.html.haml
@@ -44,5 +44,3 @@
     %h4= t('shared.invitations.invite_your_friends')
     = render "shared/invitations", :invites => @invites
 
-
-
diff --git a/app/views/services/finder.html.haml b/app/views/services/finder.html.haml
index 0da51b34c0c5d8057508be79f8dc11ad58e8f5e7..21f14f3b92c0cda04617bbe75cf8708ca1825d1b 100644
--- a/app/views/services/finder.html.haml
+++ b/app/views/services/finder.html.haml
@@ -39,7 +39,7 @@
                 = t('invitations.new.already_invited')
                 %br
                 = link_to t('.resend'), service_inviter_path(:uid => uid, :provider => 'facebook', :invitation_id => friend[:invitation_id])
-              - else
+              - elsif current_user.invites > 0
                 = form_tag service_inviter_path do
                   = select_tag(:aspect_id, options_from_collection_for_select(@all_aspects, 'id', 'name'))
                   = hidden_field_tag :uid, uid