Merge commit '5d1327644604599c8aab7b475c1511e7a88f7987' into staging
This commit is contained in:
commit
e802c151ae
4 changed files with 23 additions and 18 deletions
|
@ -2,13 +2,17 @@ $(document).on('page:load', destroy_action);
|
||||||
$(document).ready(destroy_action);
|
$(document).ready(destroy_action);
|
||||||
|
|
||||||
function destroy_action(){
|
function destroy_action(){
|
||||||
$("#destroy").on('click', function(){
|
$(".delete").on('click', function(){
|
||||||
$("#destroy").hide();
|
$(this).hide();
|
||||||
$("#confirm").show();
|
$(this).closest('td').find(".confirm").show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#confirm #cancel").on('click', function(){
|
$(".cancel").on('click', function(){
|
||||||
$("#destroy").show();
|
$(this).closest('td').find(".delete").show();
|
||||||
$("#confirm").hide();
|
$(this).closest('td').find(".confirm").hide();
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#liste_gestionnaire #libelle").on('click', function(){
|
||||||
|
setTimeout(destroy_action, 500);
|
||||||
});
|
});
|
||||||
}
|
}
|
|
@ -231,6 +231,10 @@ div.pagination {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.confirm {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
width: 15px;
|
width: 15px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -1,21 +1,18 @@
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
%table.table
|
%table.table#liste_gestionnaire
|
||||||
%thead
|
%thead
|
||||||
%th#libelle= smart_listing.sortable 'Email', 'email'
|
%th#libelle= smart_listing.sortable 'Email', 'email'
|
||||||
|
%th= ''
|
||||||
|
|
||||||
- @gestionnaires.each do |gestionnaire|
|
- @gestionnaires.each do |gestionnaire|
|
||||||
%tr
|
%tr
|
||||||
%td= gestionnaire.email
|
%td{style:'padding-top: 11px; font-size:15px'}= gestionnaire.email
|
||||||
%td{ style: 'text-align:right' }
|
%td{ style: 'text-align:right' }
|
||||||
%span#destroy{ class: "fa fa-times" }
|
.delete.btn.btn-sm.glyphicon.glyphicon-remove
|
||||||
#confirm
|
|
||||||
=link_to(admin_gestionnaire_path(id: gestionnaire.id), method: :delete) do
|
.confirm
|
||||||
%span#valid{ class: "fa fa-check btn-success" }
|
=link_to 'Valider', admin_gestionnaire_path(id: gestionnaire.id), {method: :delete, class: 'btn btn-sm btn-success'}
|
||||||
%span#valid
|
.cancel.btn.btn-sm.btn-danger.glyphicon.glyphicon-minus{style: 'top: 0'}
|
||||||
Valider
|
|
||||||
%span
|
|
||||||
|
|
|
||||||
%span#cancel{ class: "fa fa-minus btn-danger" }
|
|
||||||
|
|
||||||
= smart_listing.paginate
|
= smart_listing.paginate
|
||||||
= smart_listing.pagination_per_page_links
|
= smart_listing.pagination_per_page_links
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
.col-md-1.col-lg-1
|
.col-md-1.col-lg-1
|
||||||
|
|
||||||
.col-md-6.col-lg-6
|
.col-md-6.col-lg-6
|
||||||
%h3 Ajouter un gestionnaire
|
%h3 Ajouter un accompagnateur
|
||||||
#procedure_new.section.section-label
|
#procedure_new.section.section-label
|
||||||
= form_for @gestionnaire, url: {controller: 'admin/gestionnaires', action: :create} do |f|
|
= form_for @gestionnaire, url: {controller: 'admin/gestionnaires', action: :create} do |f|
|
||||||
.row
|
.row
|
||||||
|
|
Loading…
Reference in a new issue