102 lines
3.0 KiB
Plaintext
102 lines
3.0 KiB
Plaintext
|
|
=render :partial => "public/my_account/menu"
|
|
|
|
|
|
|
|
.center.padding
|
|
|
|
|
|
|
|
-if false
|
|
.alert.alert-warning
|
|
%h1 Vous devez valider votre adresse mail.
|
|
%p Vous avez du recevoir un message pour valider votre adresse mail. Tant que vous n'aurez pas cliquer sur le lien présent sur ce mail votre compte ne sera pas activé.
|
|
%p
|
|
Le mail a été envoyé à l'adresse :
|
|
%strong= current_product_customer.email
|
|
=link_to "renvoyer le mail de confirmation", public_reconfirm_email_path, :class => "btn btn-primary"
|
|
|
|
|
|
.padding
|
|
|
|
|
|
-if false and !current_product_customer.uid?
|
|
.facebook_connexion.blue_background{:style => "padding:2em 0;padding-top:3.5em;background:rgba(51,141,232,1);color:white;margin-bottom:1em;"}
|
|
%p{:style => "text-align:center;"}
|
|
Vous avez un compte facebook ? Liez votre compte Vitascreen en deux clics ! Vous pourrez ensuite vous connecter directement par Facebook.
|
|
%p{:style => "text-align:center;"}
|
|
=link_to i(:facebook) + raw(" Lier mon compte Facebook") , "/auth/facebook" , style: "background-color:#3b5998;color:white;", class: "btn btn-lg"
|
|
%p{:style => "text-align:center;font-size:0.9em;color:white;"}
|
|
Vitascreen ne publiera rien sur votre compte Facebook.
|
|
%br
|
|
Les autres utilisateurs Vitascreen ne verront pas votre compte Facebook sans votre accord.
|
|
|
|
-if params[:fb_alert]
|
|
.alert.alert-danger{:style => "margin:auto;max-width:800px;"}
|
|
=flash[:alert]
|
|
|
|
.product_customer_dashboard.center.padding
|
|
.row
|
|
|
|
|
|
-if current_product_customer.parent
|
|
.col-md-3
|
|
.panel.panel-default
|
|
.panel-heading
|
|
Votre recommandeur :
|
|
|
|
.panel-body
|
|
|
|
|
|
|
|
|
|
|
|
=link_to public_product_customer_path(current_product_customer.parent) do
|
|
|
|
|
|
.binary_account{:class => ""}
|
|
|
|
= current_product_customer.parent.pseudo
|
|
|
|
|
|
.col-md-3
|
|
.panel.panel-default
|
|
.panel-heading
|
|
Mes commissions
|
|
|
|
.panel-body
|
|
|
|
Le solde de vos commissions :
|
|
%table.table
|
|
-Devise.where(:orderable => true).all.each do |devise|
|
|
%tr
|
|
%td
|
|
=devise.name
|
|
%td
|
|
|
|
=number_to_currency current_product_customer.solde_commissions(devise.id), :unit => devise.icon
|
|
|
|
|
|
|
|
|
|
|
|
.col-md-6
|
|
.panel.panel-default
|
|
.panel-heading
|
|
Recommander le site
|
|
|
|
.panel-body
|
|
%p
|
|
Votre code de recommandation :
|
|
%span{:style => "font-size:1.2em;"}
|
|
=current_product_customer.mlm_token.upcase
|
|
%p
|
|
Votre lien de recommandation :
|
|
=link_to mlm_token_url(current_product_customer.mlm_token), mlm_token_url(current_product_customer.mlm_token)
|
|
%p
|
|
Lorsque que quelqu'un s'inscrit avec votre lien de recommandation nous lui offrons 10 crédits gratuits et nous vous en offrons 5, utilisables pour mettre en valeur vos annonces.
|
|
|
|
|
|
|
|
|