UI improvement
This commit is contained in:
parent
95b1c8b319
commit
78ef91c204
@ -15,6 +15,38 @@
|
||||
.info{
|
||||
color:rgb(163, 159, 159);
|
||||
}
|
||||
.state{
|
||||
position:absolute;
|
||||
top:0px;
|
||||
right:0px;
|
||||
color:white;
|
||||
padding:4px;
|
||||
padding-left:8px;
|
||||
padding-right:8px;
|
||||
}
|
||||
|
||||
.state-success{
|
||||
background-color:#5cb85c;
|
||||
}
|
||||
.state-danger{
|
||||
background-color:#d9534f;
|
||||
}
|
||||
.state-info{
|
||||
background-color:#428bca;
|
||||
}
|
||||
.state-warning{
|
||||
background-color:#f0ad4e;
|
||||
}
|
||||
.offer{
|
||||
display:block;
|
||||
background: #eeeded;
|
||||
padding:10px;
|
||||
margin-bottom:5px;
|
||||
.price{
|
||||
font-size:25px;
|
||||
font-weight:bold;
|
||||
}
|
||||
}
|
||||
|
||||
p.description{
|
||||
margin-bottom:30px;
|
||||
@ -23,7 +55,10 @@
|
||||
.message-item{
|
||||
background: #eeeded;
|
||||
}
|
||||
|
||||
.content{
|
||||
position:relative;
|
||||
padding-bottom:50px;
|
||||
}
|
||||
.counters{
|
||||
position:absolute;
|
||||
left:0px;
|
||||
|
@ -1,52 +1,85 @@
|
||||
.center.white
|
||||
.show-need
|
||||
%h1= @need.title.upcase
|
||||
.center.white.show-need
|
||||
.top-left-info
|
||||
-if @need.verified?
|
||||
%span.state.state-info.pull-right
|
||||
=@need.human_state
|
||||
-elsif @need.negociating?
|
||||
%span.state.state-warning.pull-right
|
||||
=@need.human_state
|
||||
-elsif @need.failed?
|
||||
%span.state.state-danger.pull-right
|
||||
=@need.human_state
|
||||
-elsif @need.negociated?
|
||||
%span.state.state-success.pull-right
|
||||
-offers = @need.offers.order(price: :asc)
|
||||
-if offers.size > 1
|
||||
Négocié à partir de
|
||||
%strong="#{number_to_currency(offers.first.price, locale: :fr)}"
|
||||
-elsif offers.size == 1
|
||||
Négocié à
|
||||
%strong="#{number_to_currency(offers.first.price, locale: :fr)}"
|
||||
-else
|
||||
Négocié
|
||||
.content
|
||||
%h1= @need.title.upcase
|
||||
|
||||
-if @need.author
|
||||
%p.info
|
||||
=i(:"clock-o") + " Proposé par "
|
||||
%strong=@need.author.anonyme_nick
|
||||
="il y a #{time_ago_in_words(@need.created_at)}"
|
||||
-else
|
||||
%p.info=i(:"clock-o") + " Ajouté il y a #{time_ago_in_words(@need.created_at)}"
|
||||
-if @need.author
|
||||
%p.info
|
||||
=i(:"clock-o") + " Proposé par "
|
||||
%strong=@need.author.anonyme_nick
|
||||
="il y a #{time_ago_in_words(@need.created_at)}"
|
||||
-else
|
||||
%p.info=i(:"clock-o") + " Ajouté il y a #{time_ago_in_words(@need.created_at)}"
|
||||
|
||||
|
||||
-if @need.category
|
||||
%p.info=i(:"tag") + " " + @need.category_path
|
||||
-else
|
||||
%p.info=i(:"tag") + " Non catégorisé"
|
||||
-if @need.category
|
||||
%p.info=i(:"tag") + " " + @need.category_path
|
||||
-else
|
||||
%p.info=i(:"tag") + " Non catégorisé"
|
||||
|
||||
%p.description= @need.description
|
||||
%p.description= @need.description
|
||||
|
||||
.clear
|
||||
.counters
|
||||
-if(@need.wishes.length > 0)
|
||||
.item=i(:"hand-paper-o") + " " + " #{pluralize(@need.wishes.length, 'utilisateur')} #{"intéressé".pluralize(@need.wishes.length)} par ce besoin"
|
||||
-else
|
||||
.item=i(:"hand-paper-o") + " Aucun utilisateur n'est intéressé par ce besoin"
|
||||
.clear
|
||||
.counters
|
||||
-if(@need.wishes.length > 0)
|
||||
.item=i(:"hand-paper-o") + " " + " #{pluralize(@need.wishes.length, 'utilisateur')} #{"intéressé".pluralize(@need.wishes.length)} par ce besoin"
|
||||
-else
|
||||
.item=i(:"hand-paper-o") + " Aucun utilisateur n'est intéressé par ce besoin"
|
||||
|
||||
-if @need.verified? or @need.negociating?
|
||||
-if(@need.customers.include?(current_customer))
|
||||
=link_to i(:"check") + " Intéressé", wish_public_need_path(@need) , :class => "btn btn-square btn-lg btn-success pull-right"
|
||||
-else
|
||||
=link_to i(:"hand-paper-o") + " Ça m'intéresse !", wish_public_need_path(@need) , :class => "btn btn-square btn-lg btn-primary pull-right"
|
||||
-elsif @need.negociated
|
||||
-if @need.verified? or @need.negociating?
|
||||
-if(@need.customers.include?(current_customer))
|
||||
=link_to i(:"check") + " Intéressé", wish_public_need_path(@need) , :class => "btn btn-square btn-lg btn-success pull-right"
|
||||
-else
|
||||
=link_to i(:"hand-paper-o") + " Ça m'intéresse !", wish_public_need_path(@need) , :class => "btn btn-square btn-lg btn-primary pull-right"
|
||||
-elsif @need.negociated?
|
||||
-if @need.offers.length > 0
|
||||
%h2 Les offres négociées
|
||||
-@need.offers.each do |offer|
|
||||
.offer
|
||||
.supplier
|
||||
Négocié avec le fournisseur
|
||||
%strong= offer.supplier
|
||||
.price
|
||||
=number_to_currency(offer.price, locale: :fr)
|
||||
=link_to "Acheter", "", class: "btn btn-success pull-right"
|
||||
|
||||
.clear
|
||||
|
||||
%hr
|
||||
= semantic_form_for [:public, @need, @comment ], :html => {id: :message_form, :method => :post } do |f|
|
||||
%h4 Poster un commentaire
|
||||
= f.inputs do
|
||||
= f.input :content, as: :text, label: false, rows: 5, :input_html => {:style => "height:100px;"}
|
||||
|
||||
=f.submit "Envoyer", :class => "btn btn-square btn-primary pull-right"
|
||||
.clear
|
||||
|
||||
%hr
|
||||
= semantic_form_for [:public, @need, @comment ], :html => {id: :message_form, :method => :post } do |f|
|
||||
%h4 Poster un commentaire
|
||||
= f.inputs do
|
||||
= f.input :content, as: :text, label: false, rows: 5, :input_html => {:style => "height:100px;"}
|
||||
|
||||
=f.submit "Envoyer", :class => "btn btn-square btn-primary pull-right"
|
||||
.clear
|
||||
|
||||
|
||||
%h4= i(:"comment-o") + " #{pluralize(@need.messages.count, 'Commentaire')} pour ce besoin"
|
||||
|
||||
=render collection: @comments, partial: 'message'
|
||||
%h4= i(:"comment-o") + " #{pluralize(@need.messages.count, 'Commentaire')} pour ce besoin"
|
||||
|
||||
.pagination= paginate @comments
|
||||
=render collection: @comments, partial: 'message'
|
||||
|
||||
.pagination= paginate @comments
|
||||
|
Loading…
x
Reference in New Issue
Block a user