Merge pull request #2144 from betagouv/more-ui-fixes
Petits correctifs sur l'interface
This commit is contained in:
commit
ba34a8c7b4
10 changed files with 27 additions and 7 deletions
|
@ -110,6 +110,10 @@ $auth-breakpoint: $two-columns-breakpoint;
|
|||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.auth-signup-button {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.identity-form {
|
||||
|
|
|
@ -13,7 +13,9 @@
|
|||
%p
|
||||
Afin de vous accompagner dans la découverte de demarches-simplifiees.fr, je vous propose de m’appeler pour faire un point sur vos besoins de dématérialisation.
|
||||
%br
|
||||
Vous pouvez me joindre au numéro suivant : 01 76 42 02 87.
|
||||
Vous pouvez me joindre au numéro suivant :
|
||||
= CONTACT_PHONE
|
||||
\.
|
||||
|
||||
%p
|
||||
Je vous invite également à consulter notre site de documentation qui regroupe l'ensemble des informations relatives à demarches-simplifiees.fr ainsi que des tutoriels d’utilisation :
|
||||
|
|
|
@ -27,9 +27,11 @@
|
|||
.contact-details
|
||||
Vous avez besoin d’aide ? Contactez-nous :
|
||||
%br
|
||||
– par téléphone : 01 76 42 02 87
|
||||
– par téléphone :
|
||||
= link_to CONTACT_PHONE, "tel:#{CONTACT_PHONE}"
|
||||
%br
|
||||
= "– par email : <a href='mailto:#{CONTACT_EMAIL}'>#{CONTACT_EMAIL}</a>"
|
||||
– par email :
|
||||
= link_to CONTACT_EMAIL, "mailto:#{CONTACT_EMAIL}"
|
||||
|
||||
- if nav_bar_profile == :user
|
||||
%ul.header-tabs
|
||||
|
|
|
@ -6,7 +6,8 @@ Cordialement,
|
|||
%br
|
||||
Équipe demarches-simplifiees.fr
|
||||
%br
|
||||
Téléphone (standard) : 01 76 42 02 87
|
||||
Téléphone (standard) :
|
||||
= CONTACT_PHONE
|
||||
%br
|
||||
Incubateur de Services Numériques / beta.gouv.fr
|
||||
%br
|
||||
|
|
|
@ -44,5 +44,6 @@
|
|||
= df.check_box :autorisation_donnees, required: true
|
||||
J'accepte
|
||||
= link_to "les CGU", CGU_URL, target: :blank
|
||||
%span.mandatory *
|
||||
|
||||
= f.submit "Continuer", class: "button large primary expand"
|
||||
|
|
|
@ -57,4 +57,4 @@
|
|||
%p.register
|
||||
%span
|
||||
Nouveau sur demarches-simplifiees.fr ?
|
||||
= link_to "Créer un compte", new_registration_path(resource_name), class: "button"
|
||||
= link_to "Créer un compte", new_registration_path(resource_name), class: "button auth-signup-button"
|
||||
|
|
|
@ -3,5 +3,7 @@ if !defined?(CONTACT_EMAIL)
|
|||
EQUIPE_EMAIL = "equipe@demarches-simplifiees.fr"
|
||||
TECH_EMAIL = "tech@demarches-simplifiees.fr"
|
||||
|
||||
CONTACT_PHONE = "01 76 42 02 87"
|
||||
|
||||
OLD_CONTACT_EMAIL = "contact@tps.apientreprise.fr"
|
||||
end
|
|
@ -1,4 +1,4 @@
|
|||
require_relative "emails"
|
||||
require_relative "contacts"
|
||||
|
||||
# Use this hook to configure devise mailer, warden hooks and so forth.
|
||||
# Many of these configuration options can be set straight in your model.
|
||||
|
|
|
@ -34,7 +34,7 @@ module Mailers
|
|||
|
||||
#{detail_procedures(procedures)}
|
||||
|
||||
Pour toute question vous pouvez nous joindre par téléphone au 01 76 42 02 87
|
||||
Pour toute question vous pouvez nous joindre par téléphone au #{CONTACT_PHONE}
|
||||
ou sur l’adresse email #{CONTACT_EMAIL}.
|
||||
-- \nL’équipe demarches-simplifiees.fr
|
||||
HEREDOC
|
||||
|
|
|
@ -3,6 +3,7 @@ require 'spec_helper'
|
|||
describe 'layouts/_new_header.html.haml', type: :view do
|
||||
describe 'logo link' do
|
||||
before do
|
||||
sign_in user
|
||||
allow(controller).to receive(:nav_bar_profile).and_return(profile)
|
||||
render
|
||||
end
|
||||
|
@ -10,15 +11,22 @@ describe 'layouts/_new_header.html.haml', type: :view do
|
|||
subject { rendered }
|
||||
|
||||
context 'when rendering for user' do
|
||||
let(:user) { create(:user) }
|
||||
let(:profile) { :user }
|
||||
|
||||
it { is_expected.to have_css("a.header-logo[href=\"#{users_dossiers_path}\"]") }
|
||||
end
|
||||
|
||||
context 'when rendering for gestionnaire' do
|
||||
let(:user) { create(:gestionnaire) }
|
||||
let(:profile) { :gestionnaire }
|
||||
|
||||
it { is_expected.to have_css("a.header-logo[href=\"#{gestionnaire_procedures_path}\"]") }
|
||||
|
||||
it "displays the contact infos" do
|
||||
expect(rendered).to have_text("Contact")
|
||||
expect(rendered).to have_link(CONTACT_EMAIL, href: "mailto:#{CONTACT_EMAIL}")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue