Selectors must be written in lowercase with hyphens
This commit is contained in:
parent
73caee0ff3
commit
c10c2fc31b
131 changed files with 405 additions and 404 deletions
|
@ -16,27 +16,27 @@ function destroy_action(){
|
||||||
$(this).closest('td').find(".confirm").hide();
|
$(this).closest('td').find(".confirm").hide();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#liste_gestionnaire #libelle").on('click', function(){
|
$("#liste-gestionnaire #libelle").on('click', function(){
|
||||||
setTimeout(destroy_action, 500);
|
setTimeout(destroy_action, 500);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function on_change_type_de_champ_select (){
|
function on_change_type_de_champ_select (){
|
||||||
$("select.form-control.type_champ").on('change', function(e){
|
$("select.form-control.type-champ").on('change', function(e){
|
||||||
|
|
||||||
parent = $(this).parent().parent();
|
parent = $(this).parent().parent();
|
||||||
|
|
||||||
parent.removeClass('header_section');
|
parent.removeClass('header-section');
|
||||||
parent.children(".drop_down_list").removeClass('show_inline');
|
parent.children(".drop-down-list").removeClass('show-inline');
|
||||||
$('.mandatory', parent).show();
|
$('.mandatory', parent).show();
|
||||||
|
|
||||||
switch(this.value){
|
switch(this.value){
|
||||||
case 'header_section':
|
case 'header_section':
|
||||||
parent.addClass('header_section');
|
parent.addClass('header-section');
|
||||||
break;
|
break;
|
||||||
case 'drop_down_list':
|
case 'drop_down_list':
|
||||||
case 'multiple_drop_down_list':
|
case 'multiple_drop_down_list':
|
||||||
parent.children(".drop_down_list").addClass('show_inline');
|
parent.children(".drop-down-list").addClass('show-inline');
|
||||||
break;
|
break;
|
||||||
case 'explication':
|
case 'explication':
|
||||||
$('.mandatory', parent).hide();
|
$('.mandatory', parent).hide();
|
||||||
|
|
|
@ -8,16 +8,16 @@ function init_path_modal() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function path_modal_action() {
|
function path_modal_action() {
|
||||||
$('#publishModal').on('show.bs.modal', function (event) {
|
$('#publish-modal').on('show.bs.modal', function (event) {
|
||||||
$("#publishModal .modal-body .table .tr_content").hide();
|
$("#publish-modal .modal-body .table .tr-content").hide();
|
||||||
|
|
||||||
var button = $(event.relatedTarget) // Button that triggered the modal
|
var button = $(event.relatedTarget) // Button that triggered the modal
|
||||||
var modal_title = button.data('modal_title'); // Extract info from data-* attributes
|
var modal_title = button.data('modal_title'); // Extract info from data-* attributes
|
||||||
var modal_index = button.data('modal_index'); // Extract info from data-* attributes
|
var modal_index = button.data('modal_index'); // Extract info from data-* attributes
|
||||||
|
|
||||||
var modal = $(this)
|
var modal = $(this)
|
||||||
modal.find('#publishModal_title').html(modal_title);
|
modal.find('#publish-modal-title').html(modal_title);
|
||||||
$("#publishModal .modal-body .table #"+modal_index).show();
|
$("#publish-modal .modal-body .table #"+modal_index).show();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ function path_validation_action() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function togglePathMessage(valid, mine) {
|
function togglePathMessage(valid, mine) {
|
||||||
$('#path_messages .message').hide();
|
$('#path-messages .message').hide();
|
||||||
|
|
||||||
if (valid === true && mine === true) {
|
if (valid === true && mine === true) {
|
||||||
$('#path_is_mine').show();
|
$('#path_is_mine').show();
|
||||||
|
@ -40,9 +40,9 @@ function togglePathMessage(valid, mine) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((valid && mine === null) || mine === true)
|
if ((valid && mine === null) || mine === true)
|
||||||
$('#publishModal #publish').removeAttr('disabled')
|
$('#publish-modal #publish').removeAttr('disabled')
|
||||||
else
|
else
|
||||||
$('#publishModal #publish').attr('disabled', 'disabled')
|
$('#publish-modal #publish').attr('disabled', 'disabled')
|
||||||
}
|
}
|
||||||
|
|
||||||
function path_validation(el) {
|
function path_validation(el) {
|
||||||
|
@ -77,7 +77,7 @@ function path_type_init() {
|
||||||
source: bloodhound,
|
source: bloodhound,
|
||||||
templates: {
|
templates: {
|
||||||
empty: 'Ce lien est disponible !',
|
empty: 'Ce lien est disponible !',
|
||||||
suggestion: Handlebars.compile("<div class='path_mine_{{mine}}'>{{label}}</div>")
|
suggestion: Handlebars.compile("<div class='path-mine-{{mine}}'>{{label}}</div>")
|
||||||
},
|
},
|
||||||
limit: 5
|
limit: 5
|
||||||
});
|
});
|
||||||
|
|
|
@ -152,11 +152,11 @@ function jsObject_to_array(qp_list) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function add_event_search_address() {
|
function add_event_search_address() {
|
||||||
$("#search_by_address input[type='address']").bind('typeahead:select', function (ev, seggestion) {
|
$("#search-by-address input[type='address']").bind('typeahead:select', function (ev, seggestion) {
|
||||||
get_address_point(seggestion['label']);
|
get_address_point(seggestion['label']);
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#search_by_address input[type='address']").keypress(function (e) {
|
$("#search-by-address input[type='address']").keypress(function (e) {
|
||||||
if (e.keyCode == 13)
|
if (e.keyCode == 13)
|
||||||
get_address_point($(this).val());
|
get_address_point($(this).val());
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//App.messages = App.cable.subscriptions.create('NotificationsChannel', {
|
//App.messages = App.cable.subscriptions.create('NotificationsChannel', {
|
||||||
// received: function (data) {
|
// received: function (data) {
|
||||||
// if (window.location.href.indexOf('backoffice') !== -1) {
|
// if (window.location.href.indexOf('backoffice') !== -1) {
|
||||||
// $("#notification_alert").html(data['message']);
|
// $("#notification-alert").html(data['message']);
|
||||||
//
|
//
|
||||||
// slideIn_notification_alert();
|
// slideIn_notification_alert();
|
||||||
// }
|
// }
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
//});
|
//});
|
||||||
|
|
||||||
function slideIn_notification_alert (){
|
function slideIn_notification_alert (){
|
||||||
$("#notification_alert").animate({
|
$("#notification-alert").animate({
|
||||||
right: '20px'
|
right: '20px'
|
||||||
}, 250);
|
}, 250);
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ function slideIn_notification_alert (){
|
||||||
}
|
}
|
||||||
|
|
||||||
function slideOut_notification_alert (){
|
function slideOut_notification_alert (){
|
||||||
$("#notification_alert").animate({
|
$("#notification-alert").animate({
|
||||||
right: '-250px'
|
right: '-250px'
|
||||||
}, 200);
|
}, 200);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
$(document).on('turbolinks:load', init_default_data_block);
|
$(document).on('turbolinks:load', init_default_data_block);
|
||||||
|
|
||||||
function init_default_data_block() {
|
function init_default_data_block() {
|
||||||
$('.default_data_block #dossier .body').toggle();
|
$('.default-data-block #dossier .body').toggle();
|
||||||
$('.default_data_block #dossier .carret-right').toggle();
|
$('.default-data-block #dossier .carret-right').toggle();
|
||||||
$('.default_data_block #dossier .carret-down').toggle();
|
$('.default-data-block #dossier .carret-down').toggle();
|
||||||
|
|
||||||
$('.default_data_block .title').click(function () {
|
$('.default-data-block .title').click(function () {
|
||||||
toggle_default_data_bloc(this, 400);
|
toggle_default_data_bloc(this, 400);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.new-action').click(function () {
|
$('.new-action').click(function () {
|
||||||
var messages_block = $(this).parents().closest('.default_data_block').find('.title')
|
var messages_block = $(this).parents().closest('.default-data-block').find('.title')
|
||||||
toggle_default_data_bloc(messages_block, 400);
|
toggle_default_data_bloc(messages_block, 400);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.default_data_block.default_visible').each(function() {
|
$('.default-data-block.default_visible').each(function() {
|
||||||
toggle_default_data_bloc($(this).find('.title'), 0);
|
toggle_default_data_bloc($(this).find('.title'), 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -3,14 +3,14 @@ $(document).on('turbolinks:load', pannel_switch);
|
||||||
|
|
||||||
function pannel_switch() {
|
function pannel_switch() {
|
||||||
$('#switch-notifications').click(function () {
|
$('#switch-notifications').click(function () {
|
||||||
$('#procedure_list').addClass('hidden');
|
$('#procedure-list').addClass('hidden');
|
||||||
$('#notifications_list').removeClass('hidden');
|
$('#notifications-list').removeClass('hidden');
|
||||||
$(this).addClass('active');
|
$(this).addClass('active');
|
||||||
$('#switch-procedures').removeClass('active');
|
$('#switch-procedures').removeClass('active');
|
||||||
})
|
})
|
||||||
$('#switch-procedures').click(function () {
|
$('#switch-procedures').click(function () {
|
||||||
$('#notifications_list').addClass('hidden');
|
$('#notifications-list').addClass('hidden');
|
||||||
$('#procedure_list').removeClass('hidden');
|
$('#procedure-list').removeClass('hidden');
|
||||||
$(this).addClass('active');
|
$(this).addClass('active');
|
||||||
$('#switch-notifications').removeClass('active');
|
$('#switch-notifications').removeClass('active');
|
||||||
})
|
})
|
||||||
|
@ -44,16 +44,16 @@ function error_form_siret(invalid_siret) {
|
||||||
|
|
||||||
$("input[type='submit']").removeClass('btn-success').addClass('btn-danger');
|
$("input[type='submit']").removeClass('btn-success').addClass('btn-danger');
|
||||||
|
|
||||||
$("#dossier_siret").addClass('input-error').val(invalid_siret).on('input', reset_form_siret);
|
$("#dossier-siret").addClass('input-error').val(invalid_siret).on('input', reset_form_siret);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function reset_form_siret() {
|
function reset_form_siret() {
|
||||||
$("input[type='submit']").removeClass('btn-danger').addClass('btn-success').val('Valider');
|
$("input[type='submit']").removeClass('btn-danger').addClass('btn-success').val('Valider');
|
||||||
$("#dossier_siret").removeClass('input-error');
|
$("#dossier-siret").removeClass('input-error');
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggle_etape_1() {
|
function toggle_etape_1() {
|
||||||
$('.row.etape.etape_1 .etapes_menu #logos').toggle(100);
|
$('.row.etape.etape_1 .etapes-menu #logos').toggle(100);
|
||||||
$('.row.etape.etape_1 .etapes_informations #description_procedure').toggle(100);
|
$('.row.etape.etape_1 .etapes-informations #description_procedure').toggle(100);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
$(document).on('turbolinks:load', link_init);
|
$(document).on('turbolinks:load', link_init);
|
||||||
|
|
||||||
function link_init() {
|
function link_init() {
|
||||||
$('#dossiers_list tr').on('click', function () {
|
$('#dossiers-list tr').on('click', function () {
|
||||||
$(location).attr('href', $(this).data('dossier_url'))
|
$(location).attr('href', $(this).data('dossier_url'))
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
$(document).on('turbolinks:load', modal_action);
|
$(document).on('turbolinks:load', modal_action);
|
||||||
|
|
||||||
function modal_action() {
|
function modal_action() {
|
||||||
$('#PJmodal').on('show.bs.modal', function (event) {
|
$('#pj-modal').on('show.bs.modal', function (event) {
|
||||||
$("#PJmodal .modal-body .table .tr_content").hide();
|
$("#pj-modal .modal-body .table .tr-content").hide();
|
||||||
|
|
||||||
var button = $(event.relatedTarget) // Button that triggered the modal
|
var button = $(event.relatedTarget) // Button that triggered the modal
|
||||||
var modal_title = button.data('modal_title'); // Extract info from data-* attributes
|
var modal_title = button.data('modal_title'); // Extract info from data-* attributes
|
||||||
var modal_index = button.data('modal_index'); // Extract info from data-* attributes
|
var modal_index = button.data('modal_index'); // Extract info from data-* attributes
|
||||||
|
|
||||||
var modal = $(this)
|
var modal = $(this)
|
||||||
modal.find('#PJmodal_title').html(modal_title);
|
modal.find('#pj-modal-title').html(modal_title);
|
||||||
$("#PJmodal .modal-body .table #"+modal_index).show();
|
$("#pj-modal .modal-body .table #"+modal_index).show();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,25 +6,25 @@ function pref_list_dossier_actions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function pref_list_dossier_open_action() {
|
function pref_list_dossier_open_action() {
|
||||||
$("#pref_list_dossier_open_action").on('click', function () {
|
$("#pref-list-dossier-open-action").on('click', function () {
|
||||||
$("#pref_list_menu").css('display', 'block');
|
$("#pref-list-menu").css('display', 'block');
|
||||||
$("#pref_list_menu").css('visibility', 'visible');
|
$("#pref-list-menu").css('visibility', 'visible');
|
||||||
|
|
||||||
$("#pref_list_menu").animate({
|
$("#pref-list-menu").animate({
|
||||||
right: 0
|
right: 0
|
||||||
}, 250);
|
}, 250);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function pref_list_dossier_close_action() {
|
function pref_list_dossier_close_action() {
|
||||||
$("#pref_list_dossier_close_action").on('click', function () {
|
$("#pref-list-dossier-close-action").on('click', function () {
|
||||||
$("#pref_list_menu").animate({
|
$("#pref-list-menu").animate({
|
||||||
right: parseInt($("#pref_list_menu").css('width'), 10)*(-1)+'px'
|
right: parseInt($("#pref-list-menu").css('width'), 10)*(-1)+'px'
|
||||||
},{
|
},{
|
||||||
duration: 250,
|
duration: 250,
|
||||||
complete: function () {
|
complete: function () {
|
||||||
$("#pref_list_menu").css('display', 'none');
|
$("#pref-list-menu").css('display', 'none');
|
||||||
$("#pref_list_menu").css('visibility', 'hidden');
|
$("#pref-list-menu").css('visibility', 'hidden');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
@ -8,30 +8,30 @@ function button_edit_procedure_init(){
|
||||||
|
|
||||||
function buttons_api_carto () {
|
function buttons_api_carto () {
|
||||||
|
|
||||||
$("#procedure_module_api_carto_use_api_carto").on('change', function() {
|
$("#procedure-module-api-carto-use-api-carto").on('change', function() {
|
||||||
$("#modules_api_carto").toggle()
|
$("#modules-api-carto").toggle()
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#procedure_module_api_carto_use_api_carto').is(':checked'))
|
if ($('#procedure-module-api-carto-use-api-carto').is(':checked'))
|
||||||
$("#modules_api_carto").show();
|
$("#modules-api-carto").show();
|
||||||
}
|
}
|
||||||
|
|
||||||
function button_cerfa () {
|
function button_cerfa () {
|
||||||
|
|
||||||
$("#procedure_cerfa_flag").on('change', function() {
|
$("#procedure_cerfa_flag").on('change', function() {
|
||||||
$("#procedure_lien_demarche").toggle()
|
$("#procedure-lien-demarche").toggle()
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#procedure_cerfa_flag').is(':checked'))
|
if ($('#procedure_cerfa_flag').is(':checked'))
|
||||||
$("#procedure_lien_demarche").show();
|
$("#procedure-lien-demarche").show();
|
||||||
}
|
}
|
||||||
|
|
||||||
function button_individual () {
|
function button_individual () {
|
||||||
|
|
||||||
$("#procedure_for_individual").on('change', function() {
|
$("#procedure_for_individual").on('change', function() {
|
||||||
$("#individual_with_siret").toggle()
|
$("#individual-with-siret").toggle()
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($('#procedure_for_individual').is(':checked'))
|
if ($('#procedure_for_individual').is(':checked'))
|
||||||
$("#individual_with_siret").show();
|
$("#individual-with-siret").show();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
$(document).on('turbolinks:load', init_search_anim);
|
$(document).on('turbolinks:load', init_search_anim);
|
||||||
|
|
||||||
function init_search_anim(){
|
function init_search_anim(){
|
||||||
$("#search_area").on('click', search_fadeIn);
|
$("#search-area").on('click', search_fadeIn);
|
||||||
}
|
}
|
||||||
|
|
||||||
function search_fadeIn(){
|
function search_fadeIn(){
|
||||||
var search_area = $("#search_area");
|
var search_area = $("#search-area");
|
||||||
var body_dom = $('body');
|
var body_dom = $('body');
|
||||||
var positions = search_area.position();
|
var positions = search_area.position();
|
||||||
var width = search_area.width();
|
var width = search_area.width();
|
||||||
|
@ -16,10 +16,10 @@ function search_fadeIn(){
|
||||||
search_area.css('z-index', 300);
|
search_area.css('z-index', 300);
|
||||||
search_area.css('width', width);
|
search_area.css('width', width);
|
||||||
search_area.find('#q').animate({ height: '50px' });
|
search_area.find('#q').animate({ height: '50px' });
|
||||||
search_area.find('#search_button').animate({ height: '50px' });
|
search_area.find('#search-button').animate({ height: '50px' });
|
||||||
|
|
||||||
body_dom.append(search_area);
|
body_dom.append(search_area);
|
||||||
$('#mask_search').fadeIn(200);
|
$('#mask-search').fadeIn(200);
|
||||||
|
|
||||||
var body_width = body_dom.width();
|
var body_width = body_dom.width();
|
||||||
|
|
||||||
|
@ -30,16 +30,16 @@ function search_fadeIn(){
|
||||||
left: (body_width/2 - search_area_width/2 + 40)
|
left: (body_width/2 - search_area_width/2 + 40)
|
||||||
}, 400, function() {
|
}, 400, function() {
|
||||||
search_area.off();
|
search_area.off();
|
||||||
$("#search_area input").focus();
|
$("#search-area input").focus();
|
||||||
|
|
||||||
$('#mask_search').on('click', search_fadeOut)
|
$('#mask-search').on('click', search_fadeOut)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function search_fadeOut(){
|
function search_fadeOut(){
|
||||||
var search_area = $("#search_area");
|
var search_area = $("#search-area");
|
||||||
|
|
||||||
$('#mask_search').fadeOut(200);
|
$('#mask-search').fadeOut(200);
|
||||||
|
|
||||||
search_area.fadeOut(200, function(){
|
search_area.fadeOut(200, function(){
|
||||||
search_area.css('position', 'static');
|
search_area.css('position', 'static');
|
||||||
|
@ -48,7 +48,7 @@ function search_fadeOut(){
|
||||||
search_area.css('z-index', '');
|
search_area.css('z-index', '');
|
||||||
search_area.css('width', 'auto');
|
search_area.css('width', 'auto');
|
||||||
search_area.find('#q').css('height', 34);
|
search_area.find('#q').css('height', 34);
|
||||||
search_area.find('#search_button').css('height', 34);
|
search_area.find('#search-button').css('height', 34);
|
||||||
|
|
||||||
$('#search-block').append(search_area);
|
$('#search-block').append(search_area);
|
||||||
search_area.fadeIn(200);
|
search_area.fadeIn(200);
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
.path_mine_false {
|
.path-mine-false {
|
||||||
color: #FF0000;
|
color: #FF0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#path_messages {
|
#path-messages {
|
||||||
.message {
|
.message {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#publishModal {
|
#publish-modal {
|
||||||
.twitter-typeahead {
|
.twitter-typeahead {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.header_section {
|
.header-section {
|
||||||
background-color: rgb(0, 49, 137);
|
background-color: rgb(0, 49, 137);
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
@ -22,16 +22,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#liste_champ {
|
#liste-champ {
|
||||||
.form-inline {
|
.form-inline {
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show_inline {
|
.show-inline {
|
||||||
display: inline-block !important;
|
display: inline-block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group.drop_down_list {
|
.form-group.drop-down-list {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@ form {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.beta_staging {
|
.beta-staging {
|
||||||
background-color: #B00100 !important;
|
background-color: #B00100 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -151,7 +151,7 @@ div.pagination {
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert.alert-success.move_up,
|
.alert.alert-success.move-up,
|
||||||
.alert.alert-danger.siret {
|
.alert.alert-danger.siret {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#backoffice_index,
|
#backoffice-index,
|
||||||
#backoffice_search {
|
#backoffice-search {
|
||||||
margin-left: 2rem;
|
margin-left: 2rem;
|
||||||
margin-right: 2rem;
|
margin-right: 2rem;
|
||||||
|
|
||||||
.default_data_block {
|
.default-data-block {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// You can use Sass (SCSS) here: http://sass-lang.com/
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
||||||
@import "bootstrap";
|
@import "bootstrap";
|
||||||
|
|
||||||
#carte_page {
|
#carte-page {
|
||||||
#map {
|
#map {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
cursor: url("/assets/edit.png"), default !important;
|
cursor: url("/assets/edit.png"), default !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infos_dossier {
|
#infos-dossiers {
|
||||||
#map.mini {
|
#map.mini {
|
||||||
height: 300px;
|
height: 300px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
color: #777777;
|
color: #777777;
|
||||||
}
|
}
|
||||||
|
|
||||||
#search_by_address {
|
#search-by-address {
|
||||||
.twitter-typeahead {
|
.twitter-typeahead {
|
||||||
width: 555px;
|
width: 555px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
|
||||||
.default_data_block {
|
.default-data-block {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
|
|
||||||
.show-block {
|
.show-block {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
@import "bootstrap";
|
@import "bootstrap";
|
||||||
@import "bootstrap-datepicker3";
|
@import "bootstrap-datepicker3";
|
||||||
|
|
||||||
#description_page #liste_champs {
|
#description-page #liste-champs {
|
||||||
|
|
||||||
.default_data_block {
|
.default-data-block {
|
||||||
.show-block {
|
.show-block {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
border-color: #8B0000 !important;
|
border-color: #8B0000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-text {
|
.type-champ-text {
|
||||||
@extend .col-md-6;
|
@extend .col-md-6;
|
||||||
@extend .col-lg-6;
|
@extend .col-lg-6;
|
||||||
|
|
||||||
|
@ -37,12 +37,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-header_section {
|
.type-champ-header-section {
|
||||||
@extend .col-md-12;
|
@extend .col-md-12;
|
||||||
@extend .col-lg-12;
|
@extend .col-lg-12;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-address {
|
.type-champ-address {
|
||||||
@extend .col-md-6;
|
@extend .col-md-6;
|
||||||
@extend .col-lg-6;
|
@extend .col-lg-6;
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-email {
|
.type-champ-email {
|
||||||
@extend .col-md-4;
|
@extend .col-md-4;
|
||||||
@extend .col-lg-4;
|
@extend .col-lg-4;
|
||||||
|
|
||||||
|
@ -69,26 +69,26 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-drop_down_list,
|
.type-champ-drop-down-list,
|
||||||
.type_champ-regions,
|
.type-champ-regions,
|
||||||
.type_champ-departements,
|
.type-champ-departements,
|
||||||
.type_champ-pays {
|
.type-champ-pays {
|
||||||
@extend .col-md-4;
|
@extend .col-md-4;
|
||||||
@extend .col-lg-4;
|
@extend .col-lg-4;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-civilite {
|
.type-champ-civilite {
|
||||||
@extend .col-md-3;
|
@extend .col-md-3;
|
||||||
@extend .col-lg-3;
|
@extend .col-lg-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-yes_no {
|
.type-champ-yes-no {
|
||||||
@extend .col-md-3;
|
@extend .col-md-3;
|
||||||
@extend .col-lg-3;
|
@extend .col-lg-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-phone {
|
.type-champ-phone {
|
||||||
@extend .col-md-2;
|
@extend .col-md-2;
|
||||||
@extend .col-lg-2;
|
@extend .col-lg-2;
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-textarea {
|
.type-champ-textarea {
|
||||||
@extend .col-md-8;
|
@extend .col-md-8;
|
||||||
@extend .col-lg-8;
|
@extend .col-lg-8;
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-number {
|
.type-champ-number {
|
||||||
@extend .col-md-3;
|
@extend .col-md-3;
|
||||||
@extend .col-lg-3;
|
@extend .col-lg-3;
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-date {
|
.type-champ-date {
|
||||||
@extend .col-md-2;
|
@extend .col-md-2;
|
||||||
@extend .col-lg-2;
|
@extend .col-lg-2;
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.type_champ-datetime {
|
.type-champ-datetime {
|
||||||
@extend .col-md-5;
|
@extend .col-md-5;
|
||||||
@extend .col-lg-5;
|
@extend .col-lg-5;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#backoffice_dossier_show,
|
#backoffice-dossier-show,
|
||||||
#users_recapitulatif_dossier_show {
|
#users-recapitulatif-dossier-show {
|
||||||
|
|
||||||
#messages {
|
#messages {
|
||||||
.last-commentaire {
|
.last-commentaire {
|
||||||
|
@ -199,7 +199,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#pieces_justificatives {
|
#pieces-justificatives {
|
||||||
.piece-row {
|
.piece-row {
|
||||||
margin: 0 0 0 0;
|
margin: 0 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ h5 span {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
#insee_infogreffe {
|
#insee-infogreffe {
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ h5 span {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#dossiers_list {
|
#dossiers-list {
|
||||||
.filter {
|
.filter {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
|
@ -31,13 +31,13 @@ h5 span {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#dossiers_list tr:hover {
|
#dossiers-list tr:hover {
|
||||||
background-color: #EEEEEE;
|
background-color: #EEEEEE;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#procedure_list,
|
#procedure-list,
|
||||||
#notifications_list {
|
#notifications-list {
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
|
@ -47,12 +47,12 @@ h5 span {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.procedure_list_element.active,
|
.procedure-list-element.active,
|
||||||
.notification.active {
|
.notification.active {
|
||||||
background-color: #668ABD;
|
background-color: #668ABD;
|
||||||
}
|
}
|
||||||
|
|
||||||
.procedure_list_element,
|
.procedure-list-element,
|
||||||
.notification {
|
.notification {
|
||||||
padding: 15px 40px 15px 20px;
|
padding: 15px 40px 15px 20px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -63,7 +63,7 @@ h5 span {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.procedure_list_element:hover,
|
.procedure-list-element:hover,
|
||||||
.notification:hover {
|
.notification:hover {
|
||||||
background-color: #668ABD;
|
background-color: #668ABD;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.etape_2 {
|
.etape-2 {
|
||||||
.etapes_menu {
|
.etapes-menu {
|
||||||
#dossier_siret {
|
#dossier-siret {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.etapes_informations {
|
.etapes-informations {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#france_connect_particulier_email {
|
#france-connect-particulier-email {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
#landing_body {
|
#landing-body {
|
||||||
.split-hr-left {
|
.split-hr-left {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#etapes,
|
#etapes,
|
||||||
#request_access {
|
#request-access {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -198,7 +198,7 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#notifications_list {
|
#notifications-list {
|
||||||
.no-notification {
|
.no-notification {
|
||||||
margin: 0 30px 0 30px;
|
margin: 0 30px 0 30px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#form_login {
|
#form-login {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
|
|
||||||
|
@ -7,14 +7,14 @@
|
||||||
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
||||||
.btn_fc {
|
.btn-fc {
|
||||||
|
|
||||||
img {
|
img {
|
||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#new_user {
|
#new-user {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
||||||
#title_navbar {
|
#title-navbar {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#title_navbar:hover {
|
#title-navbar:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#sign_in {
|
#sign-in {
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
|
@ -105,7 +105,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#sign_out {
|
#sign-out {
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
|
@ -177,7 +177,7 @@
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button_navbar {
|
.button-navbar {
|
||||||
color: #666666;
|
color: #666666;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@ -202,7 +202,7 @@
|
||||||
color: $light-blue;
|
color: $light-blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button_navbar:hover,
|
.button-navbar:hover,
|
||||||
.button-navbar-action:hover {
|
.button-navbar-action:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#notification_alert {
|
#notification-alert {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 20px;
|
top: 20px;
|
||||||
right: -250px;
|
right: -250px;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
.pieces_justificatives_fields {
|
.pieces-justificatives-fields {
|
||||||
.form-inline > .form-group { vertical-align: top; }
|
.form-inline > .form-group { vertical-align: top; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#PJmodal {
|
#pj-modal {
|
||||||
.modal-body {
|
.modal-body {
|
||||||
.table {
|
.table {
|
||||||
.tr_content {
|
.tr-content {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#pref_list_menu {
|
#pref-list-menu {
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
|
@ -4,15 +4,15 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infos_dossier .row:last-child {
|
#infos-dossiers .row:last-child {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infos_dossier {
|
#infos-dossiers {
|
||||||
margin-bottom: -70px;
|
margin-bottom: -70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#backoffice_dossier_show .nav-tabs {
|
#backoffice-dossier-show .nav-tabs {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
#modules_api_carto {
|
#modules-api-carto {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#procedure_lien_demarche {
|
#procedure-lien-demarche {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#individual_with_siret {
|
#individual-with-siret {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#UploadPJmodal {
|
#upload-pj-modal {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
height: 30px;
|
height: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#search_button {
|
#search-button {
|
||||||
height: 34px;
|
height: 34px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mask_search {
|
#mask-search {
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#titre_procedure {
|
#titre-procedure {
|
||||||
margin-top: 3%;
|
margin-top: 3%;
|
||||||
margin-bottom: 2%;
|
margin-bottom: 2%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#support_navigator_banner {
|
#support-navigator-banner {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 2em;
|
line-height: 2em;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#switch_menu {
|
#switch-menu {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
bottom: 10px;
|
bottom: 10px;
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
|
|
||||||
#users_index,
|
#users-index,
|
||||||
#admins_index {
|
#admins-index {
|
||||||
margin-left: 2rem;
|
margin-left: 2rem;
|
||||||
margin-right: 2rem;
|
margin-right: 2rem;
|
||||||
|
|
||||||
.default_data_block {
|
.default-data-block {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
|
|
||||||
|
@ -19,11 +19,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#users_siret_index {
|
#users-siret-index {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#carto_page {
|
#carto-page {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,9 +36,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.white-back,
|
.white-back,
|
||||||
#users_siret_index,
|
#users-siret-index,
|
||||||
#description_page,
|
#description-page,
|
||||||
#carto_page {
|
#carto-page {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
|
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.row{ style: 'height: 34px;' }
|
.row{ style: 'height: 34px;' }
|
||||||
|
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
%table.table#liste_gestionnaire
|
%table.table#liste-gestionnaire
|
||||||
%thead
|
%thead
|
||||||
%th Enlever
|
%th Enlever
|
||||||
%th#email{ style: 'text-align: right;' } Email
|
%th#email{ style: 'text-align: right;' } Email
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
|
|
||||||
%table.table#liste_gestionnaire
|
%table.table#liste-gestionnaire
|
||||||
%thead
|
%thead
|
||||||
%th#email Email
|
%th#email Email
|
||||||
%th Ajouter
|
%th Ajouter
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
%table.table#liste_gestionnaire
|
%table.table#liste-gestionnaire
|
||||||
%thead
|
%thead
|
||||||
%th#libelle= smart_listing.sortable 'Email', 'email'
|
%th#libelle= smart_listing.sortable 'Email', 'email'
|
||||||
%th
|
%th
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.pieces_justificatives_fields
|
.pieces-justificatives-fields
|
||||||
= f.fields_for :types_de_piece_justificative, types_de_piece_justificative, remote: true do |ff|
|
= f.fields_for :types_de_piece_justificative, types_de_piece_justificative, remote: true do |ff|
|
||||||
.form-inline
|
.form-inline
|
||||||
.form-group
|
.form-group
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<% flash.each do |type, message| %>
|
<% flash.each do |type, message| %>
|
||||||
$("#flash_message").html("<div class=\"alert alert-success move_up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
$("#flash_message").html("<div class=\"alert alert-success move-up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
||||||
<% end %>
|
<% end %>
|
||||||
$('#piece_justificative_form').html("<%= escape_javascript(render partial: 'form', locals: { procedure: @procedure } ) %>");
|
$('#piece_justificative_form').html("<%= escape_javascript(render partial: 'form', locals: { procedure: @procedure } ) %>");
|
||||||
|
|
|
@ -37,10 +37,10 @@
|
||||||
= f.fields_for :module_api_carto, @procedure.module_api_carto do |ff|
|
= f.fields_for :module_api_carto, @procedure.module_api_carto do |ff|
|
||||||
.checkbox
|
.checkbox
|
||||||
%label
|
%label
|
||||||
= ff.check_box :use_api_carto, id: :procedure_module_api_carto_use_api_carto
|
= ff.check_box :use_api_carto, id: "procedure-module-api-carto-use-api-carto"
|
||||||
Utilisation de la cartographie
|
Utilisation de la cartographie
|
||||||
|
|
||||||
%ul#modules_api_carto
|
%ul#modules-api-carto
|
||||||
%li
|
%li
|
||||||
.checkbox
|
.checkbox
|
||||||
%label
|
%label
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
ne possède pas (ou pas encore) de numéro SIRET,
|
ne possède pas (ou pas encore) de numéro SIRET,
|
||||||
qui doivent donc s'identifier en tant que personne physique.
|
qui doivent donc s'identifier en tant que personne physique.
|
||||||
|
|
||||||
%ul#individual_with_siret
|
%ul#individual-with-siret
|
||||||
%li
|
%li
|
||||||
.checkbox
|
.checkbox
|
||||||
%label
|
%label
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
%table.table#dossiers_list
|
%table.table#dossiers-list
|
||||||
%thead
|
%thead
|
||||||
%th#ID= smart_listing.sortable 'ID', 'id'
|
%th#ID= smart_listing.sortable 'ID', 'id'
|
||||||
%th#libelle= smart_listing.sortable 'Libellé', 'libelle'
|
%th#libelle= smart_listing.sortable 'Libellé', 'libelle'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#publishModal.modal.fade{ "aria-labelledby" => "myModalLabel", :role => "dialog", :tabindex => "-1" }
|
#publish-modal.modal.fade{ "aria-labelledby" => "myModalLabel", :role => "dialog", :tabindex => "-1" }
|
||||||
.modal-dialog.modal-lg{ :role => "document" }
|
.modal-dialog.modal-lg{ :role => "document" }
|
||||||
= form_tag admin_procedure_publish_path(procedure_id: @procedure.id), method: :put, remote: true do
|
= form_tag admin_procedure_publish_path(procedure_id: @procedure.id), method: :put, remote: true do
|
||||||
.modal-content
|
.modal-content
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
%h4#myModalLabel.modal-title
|
%h4#myModalLabel.modal-title
|
||||||
= @procedure.archived? ? 'Réactiver' : 'Publier'
|
= @procedure.archived? ? 'Réactiver' : 'Publier'
|
||||||
la procédure
|
la procédure
|
||||||
%span#publishModal_title
|
%span#publish-modal-title
|
||||||
.modal-body
|
.modal-body
|
||||||
Vous vous apprêtez à
|
Vous vous apprêtez à
|
||||||
= @procedure.archived? ? 'republier' : 'publier'
|
= @procedure.archived? ? 'republier' : 'publier'
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
class: 'form-control',
|
class: 'form-control',
|
||||||
maxlength: 30,
|
maxlength: 30,
|
||||||
style: 'width: 300px; display: inline;')
|
style: 'width: 300px; display: inline;')
|
||||||
#path_messages
|
#path-messages
|
||||||
#path_is_mine.text-warning.center.message
|
#path_is_mine.text-warning.center.message
|
||||||
Ce lien est déjà utilisé par une de vos procédure.
|
Ce lien est déjà utilisé par une de vos procédure.
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#admins_index
|
#admins-index
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block#new_dossiers
|
.row.show-block#new_dossiers
|
||||||
.header
|
.header
|
||||||
.col-lg-10.col-md-10.col-sm-10.col-xs-10.title
|
.col-lg-10.col-md-10.col-sm-10.col-xs-10.title
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
%i.fa.fa-eraser
|
%i.fa.fa-eraser
|
||||||
Publier
|
Publier
|
||||||
- else
|
- else
|
||||||
%a.btn.btn-success{ "data-target" => "#publishModal", "data-toggle" => "modal", :type => "button", style: 'float: right; margin-top: 10px;', id: 'publish-procedure' }
|
%a.btn.btn-success{ "data-target" => "#publish-modal", "data-toggle" => "modal", :type => "button", style: 'float: right; margin-top: 10px;', id: 'publish-procedure' }
|
||||||
%i.fa.fa-eraser
|
%i.fa.fa-eraser
|
||||||
Publier
|
Publier
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
= render partial: '/admin/procedures/modal_transfer'
|
= render partial: '/admin/procedures/modal_transfer'
|
||||||
|
|
||||||
- if @facade.procedure.archived?
|
- if @facade.procedure.archived?
|
||||||
%a#reenable.btn.btn-small.btn-default.text-info{ "data-target" => "#publishModal", "data-toggle" => "modal", :type => "button", style: 'float: right; margin-top: 10px;' }
|
%a#reenable.btn.btn-small.btn-default.text-info{ "data-target" => "#publish-modal", "data-toggle" => "modal", :type => "button", style: 'float: right; margin-top: 10px;' }
|
||||||
%i.fa.fa-eraser
|
%i.fa.fa-eraser
|
||||||
Réactiver
|
Réactiver
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
- @facade.procedure.types_de_champ_private.order(:order_place).each do |champ|
|
- @facade.procedure.types_de_champ_private.order(:order_place).each do |champ|
|
||||||
%li= champ.libelle
|
%li= champ.libelle
|
||||||
|
|
||||||
.pieces_justificatives.col-xs-6.col-md-3
|
.pieces-justificatives.col-xs-6.col-md-3
|
||||||
%h4.text-info
|
%h4.text-info
|
||||||
Pièces jointes
|
Pièces jointes
|
||||||
.badge.progress-bar-info
|
.badge.progress-bar-info
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
= f.fields_for @types_de_champ_facade.fields_for_var, types_de_champ, remote: true do |ff|
|
= f.fields_for @types_de_champ_facade.fields_for_var, types_de_champ, remote: true do |ff|
|
||||||
- type_champ = ff.object.object.type_champ
|
- type_champ = ff.object.object.type_champ
|
||||||
|
|
||||||
.form-inline{ class: (type_champ == 'header_section' ? 'header_section' : nil) }
|
.form-inline{ class: (type_champ == 'header_section' ? 'header-section' : nil) }
|
||||||
.form-group.libelle
|
.form-group.libelle
|
||||||
%h4 Libellé
|
%h4 Libellé
|
||||||
= ff.text_field :libelle, class: 'form-control libelle', placeholder: 'Libellé'
|
= ff.text_field :libelle, class: 'form-control libelle', placeholder: 'Libellé'
|
||||||
|
|
||||||
.form-group.type
|
.form-group.type
|
||||||
%h4 Type
|
%h4 Type
|
||||||
= ff.select :type_champ, TypeDeChamp.type_de_champs_list_fr, {}, { class: 'form-control type_champ' }
|
= ff.select :type_champ, TypeDeChamp.type_de_champs_list_fr, {}, { class: 'form-control type-champ' }
|
||||||
|
|
||||||
.form-group.description
|
.form-group.description
|
||||||
%h4 Description
|
%h4 Description
|
||||||
= ff.text_area :description, class: 'form-control description', placeholder: 'Description', rows: 3
|
= ff.text_area :description, class: 'form-control description', placeholder: 'Description', rows: 3
|
||||||
|
|
||||||
.form-group.drop_down_list{ class: (%w(drop_down_list multiple_drop_down_list).include?(type_champ) ? 'show_inline' : nil), style: 'margin-right: 5px;' }
|
.form-group.drop-down-list{ class: (%w(drop_down_list multiple_drop_down_list).include?(type_champ) ? 'show-inline' : nil), style: 'margin-right: 5px;' }
|
||||||
%h4 Liste déroulante
|
%h4 Liste déroulante
|
||||||
= ff.fields_for :drop_down_list_attributes, ff.object.object.drop_down_list do |fff|
|
= ff.fields_for :drop_down_list_attributes, ff.object.object.drop_down_list do |fff|
|
||||||
~ fff.text_area :value, class: 'form-control drop_down_list', placeholder: "Ecrire une valeur par ligne et --valeur-- pour un séparateur.", rows: 3, cols: 30
|
~ fff.text_area :value, class: 'form-control drop_down_list', placeholder: "Ecrire une valeur par ligne et --valeur-- pour un séparateur.", rows: 3, cols: 30
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
.row.white-back
|
.row.white-back
|
||||||
#liste_champ
|
#liste-champ
|
||||||
= render partial: 'admin/types_de_champ/form'
|
= render partial: 'admin/types_de_champ/form'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<% flash.each do |type, message| %>
|
<% flash.each do |type, message| %>
|
||||||
$("#flash_message").html("<div class=\"alert alert-success move_up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
$("#flash_message").html("<div class=\"alert alert-success move-up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
||||||
<% end %>
|
<% end %>
|
||||||
$('#liste_champ').html("<%= escape_javascript(render partial: 'admin/types_de_champ/form', locals: { procedure: @procedure, types_de_champ: @types_de_champ } ) %>");
|
$('#liste-champ').html("<%= escape_javascript(render partial: 'admin/types_de_champ/form', locals: { procedure: @procedure, types_de_champ: @types_de_champ } ) %>");
|
||||||
on_change_type_de_champ_select ();
|
on_change_type_de_champ_select ();
|
|
@ -1,4 +1,4 @@
|
||||||
#form_login
|
#form-login
|
||||||
%br
|
%br
|
||||||
= image_tag(image_url(LOGO_NAME))
|
= image_tag(image_url(LOGO_NAME))
|
||||||
%br
|
%br
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
#new_user
|
#new-user
|
||||||
= form_for @administrateur, url: { controller: 'administrateurs/sessions', action: :create } do |f|
|
= form_for @administrateur, url: { controller: 'administrateurs/sessions', action: :create } do |f|
|
||||||
%h4
|
%h4
|
||||||
= f.label :email
|
= f.label :email
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
%table#dossiers_list.table
|
%table#dossiers-list.table
|
||||||
%thead
|
%thead
|
||||||
- if smart_listing.name.to_s == 'follow_dossiers'
|
- if smart_listing.name.to_s == 'follow_dossiers'
|
||||||
%th.col-xs-1.center
|
%th.col-xs-1.center
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
%button#pref_list_dossier_close_action.btn.btn-danger.btn-xs.fixed-right
|
%button#pref-list-dossier-close-action.btn.btn-danger.btn-xs.fixed-right
|
||||||
%i.fa.fa-close
|
%i.fa.fa-close
|
||||||
%h3
|
%h3
|
||||||
= t('dynamics.backoffice.pref_list.title')
|
= t('dynamics.backoffice.pref_list.title')
|
||||||
|
|
|
@ -9,6 +9,6 @@ $.ajax({
|
||||||
url: '/backoffice/preference_list_dossier/reload_pref_list?procedure_id=<%= @procedure_id %>',
|
url: '/backoffice/preference_list_dossier/reload_pref_list?procedure_id=<%= @procedure_id %>',
|
||||||
async: true
|
async: true
|
||||||
}).done(function (data) {
|
}).done(function (data) {
|
||||||
$("#pref_list_menu").html(data);
|
$("#pref-list-menu").html(data);
|
||||||
pref_list_dossier_actions();
|
pref_list_dossier_actions();
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<% flash.each do |type, message| %>
|
<% flash.each do |type, message| %>
|
||||||
$("#flash_message").html("<div class=\"alert alert-success move_up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
$("#flash_message").html("<div class=\"alert alert-success move-up\" style=\"display: block:\"> <%= message.html_safe %></div>").children().fadeOut(5000)
|
||||||
<% end %>
|
<% end %>
|
||||||
<% flash.clear %>
|
<% flash.clear %>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#backoffice_index
|
#backoffice-index
|
||||||
#pref_list_menu
|
#pref-list-menu
|
||||||
= render partial: 'backoffice/dossiers/pref_list'
|
= render partial: 'backoffice/dossiers/pref_list'
|
||||||
|
|
||||||
.default_data_block
|
.default-data-block
|
||||||
.row.show-block#new_dossiers
|
.row.show-block#new_dossiers
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
.col-xs-3
|
.col-xs-3
|
||||||
= link_to 'Terminés', '?liste=termine', class: 'text-success', style: "text-decoration: #{@facade_data_view.liste == 'termine'? 'underline' : ''}"
|
= link_to 'Terminés', '?liste=termine', class: 'text-success', style: "text-decoration: #{@facade_data_view.liste == 'termine'? 'underline' : ''}"
|
||||||
|
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block#follow_dossiers
|
.row.show-block#follow_dossiers
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
.body
|
.body
|
||||||
= smart_listing_render :follow_dossiers
|
= smart_listing_render :follow_dossiers
|
||||||
|
|
||||||
.default_data_block
|
.default-data-block
|
||||||
.row.show-block#all_dossiers
|
.row.show-block#all_dossiers
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
|
|
||||||
|
|
||||||
- if @archived_dossiers
|
- if @archived_dossiers
|
||||||
.default_data_block
|
.default-data-block
|
||||||
.row.show-block#archived_dossiers
|
.row.show-block#archived_dossiers
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#backoffice_search
|
#backoffice-search
|
||||||
#pref_list_menu
|
#pref-list-menu
|
||||||
= render partial: 'backoffice/dossiers/pref_list'
|
= render partial: 'backoffice/dossiers/pref_list'
|
||||||
|
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block#new_dossiers
|
.row.show-block#new_dossiers
|
||||||
.header
|
.header
|
||||||
.col-lg-10.col-md-10.col-sm-10.col-xs-10.title
|
.col-lg-10.col-md-10.col-sm-10.col-xs-10.title
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#backoffice_dossier_show.col-xs-12
|
#backoffice-dossier-show.col-xs-12
|
||||||
= render partial: "dossiers/dossier_show"
|
= render partial: "dossiers/dossier_show"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
= render partial: 'dossiers/messagerie', locals: { dossier_facade: @facade }
|
= render partial: 'dossiers/messagerie', locals: { dossier_facade: @facade }
|
||||||
|
|
||||||
- if @facade.procedure.individual_with_siret
|
- if @facade.procedure.individual_with_siret
|
||||||
.default_data_block
|
.default-data-block
|
||||||
.row.show-block.infos
|
.row.show-block.infos
|
||||||
.header
|
.header
|
||||||
.col-xs-8.title-no-expanse
|
.col-xs-8.title-no-expanse
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
Renseigner un SIRET
|
Renseigner un SIRET
|
||||||
|
|
||||||
- unless @facade.entreprise.nil?
|
- unless @facade.entreprise.nil?
|
||||||
.default_data_block
|
.default-data-block
|
||||||
.row.show-block.infos#infos_entreprise
|
.row.show-block.infos#infos_entreprise
|
||||||
.header
|
.header
|
||||||
.col-xs-12.title
|
.col-xs-12.title
|
||||||
|
@ -23,8 +23,8 @@
|
||||||
.body.display-block-on-print
|
.body.display-block-on-print
|
||||||
= render partial: '/dossiers/infos_entreprise'
|
= render partial: '/dossiers/infos_entreprise'
|
||||||
|
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block.infos#infos_dossier
|
.row.show-block.infos#infos-dossiers
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
.carret-right
|
.carret-right
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
= render partial: '/dossiers/infos_dossier'
|
= render partial: '/dossiers/infos_dossier'
|
||||||
|
|
||||||
- if @facade.dossier.procedure.module_api_carto.use_api_carto
|
- if @facade.dossier.procedure.module_api_carto.use_api_carto
|
||||||
.default_data_block.default_visible.no-page-break-inside
|
.default-data-block.default_visible.no-page-break-inside
|
||||||
.row.show-block#carto
|
.row.show-block#carto
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
|
|
||||||
- if @current_gestionnaire && gestionnaire_signed_in? && @champs_private.count > 0
|
- if @current_gestionnaire && gestionnaire_signed_in? && @champs_private.count > 0
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block#private-fields
|
.row.show-block#private-fields
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.dropdown.pull-right#download-menu
|
.dropdown.pull-right#download-menu
|
||||||
%a.dropdown-toggle.button_navbar{ type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
%a.dropdown-toggle.button-navbar{ type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
||||||
%i.fa.fa-download
|
%i.fa.fa-download
|
||||||
Télécharger tous les dossiers
|
Télécharger tous les dossiers
|
||||||
%span.caret
|
%span.caret
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
- if user_signed_in? && (@facade.dossier.owner?(current_user.email) || @facade.dossier.invite_by_user?(current_user.email))
|
- if user_signed_in? && (@facade.dossier.owner?(current_user.email) || @facade.dossier.invite_by_user?(current_user.email))
|
||||||
- if @facade.procedure.cerfa_flag? || @facade.dossier.types_de_piece_justificative.size > 0
|
- if @facade.procedure.cerfa_flag? || @facade.dossier.types_de_piece_justificative.size > 0
|
||||||
.col-lg-4.col-md-4.col-sm-4.col-xs-4.action
|
.col-lg-4.col-md-4.col-sm-4.col-xs-4.action
|
||||||
%a#maj_pj.action{ "data-target" => "#UploadPJmodal",
|
%a#maj_pj.action{ "data-target" => "#upload-pj-modal",
|
||||||
"data-toggle" => "modal",
|
"data-toggle" => "modal",
|
||||||
:type => "button",
|
:type => "button",
|
||||||
style: 'margin-bottom: 15px; margin-top: -30px;' }
|
style: 'margin-bottom: 15px; margin-top: -30px;' }
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
.col-xs-4.dossier-title= t('utils.pieces').upcase
|
.col-xs-4.dossier-title= t('utils.pieces').upcase
|
||||||
.col-xs-4.split-hr
|
.col-xs-4.split-hr
|
||||||
|
|
||||||
.col-xs-12#pieces_justificatives.margin-bot-40
|
.col-xs-12#pieces-justificatives.margin-bot-40
|
||||||
.row
|
.row
|
||||||
- if @facade.procedure.cerfa_flag?
|
- if @facade.procedure.cerfa_flag?
|
||||||
.col-xs-12#piece_justificative_0
|
.col-xs-12#piece_justificative_0
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
%a{ href: "#{@facade.dossier.cerfa.last.content_url}", target: '_blank' } Consulter
|
%a{ href: "#{@facade.dossier.cerfa.last.content_url}", target: '_blank' } Consulter
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
= link_to "", class: "historique", "data-toggle" => "modal", "data-target" => "#PJmodal", :type => "button", "data-modal_title" => 'formulaires', "data-modal_index" => 'cerfa' do
|
= link_to "", class: "historique", "data-toggle" => "modal", "data-target" => "#pj-modal", :type => "button", "data-modal_title" => 'formulaires', "data-modal_index" => 'cerfa' do
|
||||||
%span.fa.fa-clock-o
|
%span.fa.fa-clock-o
|
||||||
- else
|
- else
|
||||||
Pièce non fournie
|
Pièce non fournie
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
- if @facade.dossier.pieces_justificatives.where(type_de_piece_justificative_id: type_de_piece_justificative.id).count > 1
|
- if @facade.dossier.pieces_justificatives.where(type_de_piece_justificative_id: type_de_piece_justificative.id).count > 1
|
||||||
= link_to "", class: "historique", "data-toggle" => "modal", "data-target" => "#PJmodal", :type => "button", "data-modal_title" => 'formulaires', "data-modal_index" => "type_de_pj_#{type_de_piece_justificative.id}" do
|
= link_to "", class: "historique", "data-toggle" => "modal", "data-target" => "#pj-modal", :type => "button", "data-modal_title" => 'formulaires', "data-modal_index" => "type_de_pj_#{type_de_piece_justificative.id}" do
|
||||||
%span.fa.fa-clock-o
|
%span.fa.fa-clock-o
|
||||||
- else
|
- else
|
||||||
Pièce non fournie
|
Pièce non fournie
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
- if @facade.procedure.cerfa_flag? || @facade.dossier.types_de_piece_justificative.size > 0
|
- if @facade.procedure.cerfa_flag? || @facade.dossier.types_de_piece_justificative.size > 0
|
||||||
.row
|
.row
|
||||||
.col-xs-4
|
.col-xs-4
|
||||||
%a#maj_pj.action{ "data-target" => "#UploadPJmodal", "data-toggle" => "modal", :type => "button" }
|
%a#maj_pj.action{ "data-target" => "#upload-pj-modal", "data-toggle" => "modal", :type => "button" }
|
||||||
.col-xs-4.action
|
.col-xs-4.action
|
||||||
Modifier les documents
|
Modifier les documents
|
||||||
%br
|
%br
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
.col-xs-4
|
.col-xs-4
|
||||||
|
|
||||||
- if gestionnaire_signed_in?
|
- if gestionnaire_signed_in?
|
||||||
#PJmodal.modal.fade{ "aria-labelledby" => "myModalLabel", :role => "dialog", :tabindex => "-1" }
|
#pj-modal.modal.fade{ "aria-labelledby" => "myModalLabel", :role => "dialog", :tabindex => "-1" }
|
||||||
.modal-dialog.modal-lg{ :role => "document" }
|
.modal-dialog.modal-lg{ :role => "document" }
|
||||||
.modal-content
|
.modal-content
|
||||||
.modal-header
|
.modal-header
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
%span{ "aria-hidden" => "true" } ×
|
%span{ "aria-hidden" => "true" } ×
|
||||||
%h4#myModalLabel.modal-title
|
%h4#myModalLabel.modal-title
|
||||||
Historique des
|
Historique des
|
||||||
%span#PJmodal_title
|
%span#pj-modal-title
|
||||||
.modal-body
|
.modal-body
|
||||||
%table.table
|
%table.table
|
||||||
%thead
|
%thead
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
Date d'envoi
|
Date d'envoi
|
||||||
%th
|
%th
|
||||||
Lien
|
Lien
|
||||||
%thead.tr_content#cerfa
|
%thead.tr-content#cerfa
|
||||||
- if @facade.procedure.cerfa_flag?
|
- if @facade.procedure.cerfa_flag?
|
||||||
- if @facade.dossier.cerfa_available?
|
- if @facade.dossier.cerfa_available?
|
||||||
- @facade.cerfas_ordered.each do |cerfa|
|
- @facade.cerfas_ordered.each do |cerfa|
|
||||||
|
@ -142,7 +142,7 @@
|
||||||
%td.col-md-6.col-sm-6.col-xs-6.col-lg-4
|
%td.col-md-6.col-sm-6.col-xs-6.col-lg-4
|
||||||
= link_to 'Récupérer', cerfa.content_url, { target: :blank }
|
= link_to 'Récupérer', cerfa.content_url, { target: :blank }
|
||||||
- @facade.dossier.types_de_piece_justificative.each do |type_de_piece_justificative|
|
- @facade.dossier.types_de_piece_justificative.each do |type_de_piece_justificative|
|
||||||
%tbody.tr_content{ id: "type_de_pj_#{type_de_piece_justificative.id}" }
|
%tbody.tr-content{ id: "type_de_pj_#{type_de_piece_justificative.id}" }
|
||||||
- @facade.dossier.retrieve_all_piece_justificative_by_type(type_de_piece_justificative.id).each do |piece_justificative|
|
- @facade.dossier.retrieve_all_piece_justificative_by_type(type_de_piece_justificative.id).each do |piece_justificative|
|
||||||
%tr
|
%tr
|
||||||
%td.col-md-6.col-sm-6.col-xs-6.col-lg-4
|
%td.col-md-6.col-sm-6.col-xs-6.col-lg-4
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#pieces_justificatives
|
#pieces-justificatives
|
||||||
.row
|
.row
|
||||||
- if @facade.procedure.cerfa_flag?
|
- if @facade.procedure.cerfa_flag?
|
||||||
.col-xs-12#piece_justificative_0
|
.col-xs-12#piece_justificative_0
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
||||||
"data-target" => "#PJmodal",
|
"data-target" => "#pj-modal",
|
||||||
"data-toggle" => "modal",
|
"data-toggle" => "modal",
|
||||||
:type => "button",
|
:type => "button",
|
||||||
"data-modal_title" => 'formulaires',
|
"data-modal_title" => 'formulaires',
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
||||||
"data-target" => "#PJmodal",
|
"data-target" => "#pj-modal",
|
||||||
"data-toggle" => "modal",
|
"data-toggle" => "modal",
|
||||||
:type => "button",
|
:type => "button",
|
||||||
"data-modal_title" => type_de_piece_justificative.libelle,
|
"data-modal_title" => type_de_piece_justificative.libelle,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.default_data_block{ style: 'margin-top: 40px;' }
|
.default-data-block{ style: 'margin-top: 40px;' }
|
||||||
.row.show-block.clearfix#messages
|
.row.show-block.clearfix#messages
|
||||||
.header
|
.header
|
||||||
.col-xs-10.title
|
.col-xs-10.title
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#pieces_justificatives
|
#pieces-justificatives
|
||||||
%table.table
|
%table.table
|
||||||
- if @facade.procedure.cerfa_flag?
|
- if @facade.procedure.cerfa_flag?
|
||||||
%tr{ id: "piece_justificative_0" }
|
%tr{ id: "piece_justificative_0" }
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
||||||
"data-target" => "#PJmodal",
|
"data-target" => "#pj-modal",
|
||||||
"data-toggle" => "modal",
|
"data-toggle" => "modal",
|
||||||
:type => "button",
|
:type => "button",
|
||||||
"data-modal_title" => 'formulaires',
|
"data-modal_title" => 'formulaires',
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
%span{ style: 'margin-left: 12px;' }
|
%span{ style: 'margin-left: 12px;' }
|
||||||
\-
|
\-
|
||||||
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
%a.btn.fa.fa-timer{ style: 'color: black; padding-top: 0;',
|
||||||
"data-target" => "#PJmodal",
|
"data-target" => "#pj-modal",
|
||||||
"data-toggle" => "modal",
|
"data-toggle" => "modal",
|
||||||
:type => "button",
|
:type => "button",
|
||||||
"data-modal_title" => type_de_piece_justificative.libelle,
|
"data-modal_title" => type_de_piece_justificative.libelle,
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#users_siret_index
|
#users-siret-index
|
||||||
|
|
||||||
.row.etape.etape_1
|
.row.etape.etape_1
|
||||||
= render partial: '/dossiers/etapes/etape1'
|
= render partial: '/dossiers/etapes/etape1'
|
||||||
|
|
||||||
.row.etape.etape_2
|
.row.etape.etape-2
|
||||||
= render partial: '/dossiers/etapes/etape2'
|
= render partial: '/dossiers/etapes/etape2'
|
||||||
|
|
||||||
-# - if @facade.procedure.module_api_carto.use_api_carto?
|
-# - if @facade.procedure.module_api_carto.use_api_carto?
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<% if flash.empty? %>
|
<% if flash.empty? %>
|
||||||
$('.row.etape.etape_2').hide(300, render_new_siret);
|
$('.row.etape.etape-2').hide(300, render_new_siret);
|
||||||
$('.row.etape.etape_2').slideDown(400, the_terms);
|
$('.row.etape.etape-2').slideDown(400, the_terms);
|
||||||
<% else %>
|
<% else %>
|
||||||
error_form_siret('<%= invalid_siret %>');
|
error_form_siret('<%= invalid_siret %>');
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -8,5 +8,5 @@ error_form_siret('<%= invalid_siret %>');
|
||||||
<% flash.clear %>
|
<% flash.clear %>
|
||||||
|
|
||||||
function render_new_siret(){
|
function render_new_siret(){
|
||||||
$('.row.etape.etape_2').html("<%= escape_javascript(render partial: '/dossiers/etapes/etape_2/entreprise', locals: { facade: @facade } ) %>");
|
$('.row.etape.etape-2').html("<%= escape_javascript(render partial: '/dossiers/etapes/etape_2/entreprise', locals: { facade: @facade } ) %>");
|
||||||
}
|
}
|
|
@ -9,10 +9,10 @@
|
||||||
#logo_procedure.flag
|
#logo_procedure.flag
|
||||||
= image_tag( @facade.procedure.decorate.logo_img )
|
= image_tag( @facade.procedure.decorate.logo_img )
|
||||||
|
|
||||||
.etape.etapes_informations.col-xs-9
|
.etape.etapes-informations.col-xs-9
|
||||||
.row
|
.row
|
||||||
.col-xs-12.padding-left-30
|
.col-xs-12.padding-left-30
|
||||||
%h2#titre_procedure.text-info
|
%h2#titre-procedure.text-info
|
||||||
= @facade.procedure.libelle
|
= @facade.procedure.libelle
|
||||||
|
|
||||||
%p#description_procedure{ style: 'width: 95%;', class: (@facade.entreprise.nil? ? '' : 'mask') }
|
%p#description_procedure{ style: 'width: 95%;', class: (@facade.entreprise.nil? ? '' : 'mask') }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.etape.etapes_menu.col-xs-3
|
.etape.etapes-menu.col-xs-3
|
||||||
%h3
|
%h3
|
||||||
Ma zone d'intervention
|
Ma zone d'intervention
|
||||||
|
|
||||||
.etape.etapes_informations.col-xs-9
|
.etape.etapes-informations.col-xs-9
|
||||||
.row
|
.row
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.etape.etapes_menu.col-xs-3
|
.etape.etapes-menu.col-xs-3
|
||||||
%h3
|
%h3
|
||||||
Mon dossier
|
Mon dossier
|
||||||
|
|
||||||
.etape.etapes_informations.col-xs-9
|
.etape.etapes-informations.col-xs-9
|
||||||
.row
|
.row
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.etape.etapes_menu.col-xs-3
|
.etape.etapes-menu.col-xs-3
|
||||||
%h3
|
%h3
|
||||||
Mes informations
|
Mes informations
|
||||||
%br
|
%br
|
||||||
|
@ -12,21 +12,21 @@
|
||||||
= f.submit 'Changer de SIRET', class: %w(btn btn-xs btn-primary)
|
= f.submit 'Changer de SIRET', class: %w(btn btn-xs btn-primary)
|
||||||
|
|
||||||
|
|
||||||
.etape.etapes_informations.col-xs-9
|
.etape.etapes-informations.col-xs-9
|
||||||
.row
|
.row
|
||||||
- if @facade.entreprise.nil?
|
- if @facade.entreprise.nil?
|
||||||
#new_siret{ style: 'margin-left: 20%; margin-top: 5%;' }
|
#new_siret{ style: 'margin-left: 20%; margin-top: 5%;' }
|
||||||
= form_for @facade.dossier, html: { class: 'form-inline' }, url: users_dossier_siret_informations_path(dossier_id: @facade.dossier.id), method: :post, remote: true do |f|
|
= form_for @facade.dossier, html: { class: 'form-inline' }, url: users_dossier_siret_informations_path(dossier_id: @facade.dossier.id), method: :post, remote: true do |f|
|
||||||
.form-group.form-group-lg
|
.form-group.form-group-lg
|
||||||
= f.text_field :siret, class: "form-control", placeholder: "Entrez votre Siret", value: @siret
|
= f.text_field :siret, id: "dossier-siret", class: "form-control", placeholder: "Entrez votre Siret", value: @siret
|
||||||
= f.hidden_field :dossier_id, value: @facade.dossier.id
|
= f.hidden_field :dossier_id, value: @facade.dossier.id
|
||||||
= f.submit 'Valider', class: %w(btn btn-lg btn-success), id: 'submit-siret', data: { disable_with: "Recherche en cours ..." }
|
= f.submit 'Valider', class: %w(btn btn-lg btn-success), id: 'submit-siret', data: { disable_with: "Recherche en cours ..." }
|
||||||
- else
|
- else
|
||||||
%br
|
%br
|
||||||
#recap_info_entreprise
|
#recap-info-entreprise
|
||||||
= render partial: '/dossiers/infos_entreprise'
|
= render partial: '/dossiers/infos_entreprise'
|
||||||
|
|
||||||
%p#insee_infogreffe{ style: 'color: grey; float: right;' }
|
%p#insee-infogreffe{ style: 'color: grey; float: right;' }
|
||||||
%i
|
%i
|
||||||
Informations récupérées auprès de l'INSEE et d'INFOGREFFE
|
Informations récupérées auprès de l'INSEE et d'INFOGREFFE
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
%br
|
%br
|
||||||
vous concernant.
|
vous concernant.
|
||||||
|
|
||||||
.etape.etapes_informations.col-xs-9
|
.etape.etapes-informations.col-xs-9
|
||||||
= form_for @facade.dossier, url: { controller: '/users/dossiers', action: :update } do |f|
|
= form_for @facade.dossier, url: { controller: '/users/dossiers', action: :update } do |f|
|
||||||
.row
|
.row
|
||||||
.col-xs-12.padding-left-30
|
.col-xs-12.padding-left-30
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<% if flash.empty? %>
|
<% if flash.empty? %>
|
||||||
$('.row.etape.etape_2').hide(300, render_new_siret);
|
$('.row.etape.etape-2').hide(300, render_new_siret);
|
||||||
$('.row.etape.etape_2').slideDown(400, the_terms);
|
$('.row.etape.etape-2').slideDown(400, the_terms);
|
||||||
toggle_etape_1();
|
toggle_etape_1();
|
||||||
<% else %>
|
<% else %>
|
||||||
error_form_siret('<%= invalid_siret %>');
|
error_form_siret('<%= invalid_siret %>');
|
||||||
|
@ -9,5 +9,5 @@ error_form_siret('<%= invalid_siret %>');
|
||||||
<% flash.clear %>
|
<% flash.clear %>
|
||||||
|
|
||||||
function render_new_siret(){
|
function render_new_siret(){
|
||||||
$('.row.etape.etape_2').html("<%= escape_javascript(render partial: '/dossiers/etapes/etape2', locals: { facade: @facade } ) %>");
|
$('.row.etape.etape-2').html("<%= escape_javascript(render partial: '/dossiers/etapes/etape2', locals: { facade: @facade } ) %>");
|
||||||
}
|
}
|
|
@ -12,7 +12,7 @@
|
||||||
Afin d'associer ce compte à votre identifiant France Connect, merci de saisir votre mot de passe TPS.
|
Afin d'associer ce compte à votre identifiant France Connect, merci de saisir votre mot de passe TPS.
|
||||||
%br
|
%br
|
||||||
.center
|
.center
|
||||||
#france_connect_particulier_email
|
#france-connect-particulier-email
|
||||||
= form_for @user, url: { controller: 'france_connect/particulier', action: :check_email }, method: :post do |f|
|
= form_for @user, url: { controller: 'france_connect/particulier', action: :check_email }, method: :post do |f|
|
||||||
.form-group.form-group-lg
|
.form-group.form-group-lg
|
||||||
= f.text_field :email_france_connect, class: "form-control", readonly: 'readonly'
|
= f.text_field :email_france_connect, class: "form-control", readonly: 'readonly'
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
%br
|
%br
|
||||||
|
|
||||||
.center
|
.center
|
||||||
#france_connect_particulier_email
|
#france-connect-particulier-email
|
||||||
= form_for @user, url: { controller: 'france_connect/particulier', action: :check_email }, method: :post do |f|
|
= form_for @user, url: { controller: 'france_connect/particulier', action: :check_email }, method: :post do |f|
|
||||||
.form-group.form-group-lg
|
.form-group.form-group-lg
|
||||||
= f.text_field :email_france_connect, class: "form-control", placeholder: "Entrez votre email"
|
= f.text_field :email_france_connect, class: "form-control", placeholder: "Entrez votre email"
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
= devise_error_messages!
|
= devise_error_messages!
|
||||||
|
|
||||||
#form_login
|
#form-login
|
||||||
= image_tag(image_url(LOGO_NAME))
|
= image_tag(image_url(LOGO_NAME))
|
||||||
%br
|
%br
|
||||||
%h2#gestionnaire_login Changement de mot de passe
|
%h2#gestionnaire_login Changement de mot de passe
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
#new_user
|
#new-user
|
||||||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
||||||
= f.hidden_field :reset_password_token
|
= f.hidden_field :reset_password_token
|
||||||
%h4
|
%h4
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
= devise_error_messages!
|
= devise_error_messages!
|
||||||
|
|
||||||
%br
|
%br
|
||||||
#form_login
|
#form-login
|
||||||
= image_tag(image_url(LOGO_NAME))
|
= image_tag(image_url(LOGO_NAME))
|
||||||
%br
|
%br
|
||||||
%h2#gestionnaire_login Mot de passe oublié
|
%h2#gestionnaire_login Mot de passe oublié
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
#new_user
|
#new-user
|
||||||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
||||||
%h4
|
%h4
|
||||||
= f.label :email
|
= f.label :email
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#form_login
|
#form-login
|
||||||
%br
|
%br
|
||||||
= image_tag(image_url(LOGO_NAME))
|
= image_tag(image_url(LOGO_NAME))
|
||||||
%br
|
%br
|
||||||
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
#new_user
|
#new-user
|
||||||
= form_for @gestionnaire, url: gestionnaire_session_path, method: :post do |f|
|
= form_for @gestionnaire, url: gestionnaire_session_path, method: :post do |f|
|
||||||
%h4
|
%h4
|
||||||
= f.label :email
|
= f.label :email
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.col-xs-2
|
.col-xs-2
|
||||||
%a#title_navbar{ href: '/' }
|
%a#title-navbar{ href: '/' }
|
||||||
.row#home
|
.row#home
|
||||||
.col-lg-6.no-padding
|
.col-lg-6.no-padding
|
||||||
= image_tag('marianne_small.png', class: 'logo')
|
= image_tag('marianne_small.png', class: 'logo')
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#notification_alert.alert.alert-success
|
#notification-alert.alert.alert-success
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- unless BrowserService.recommended_browser?
|
- unless BrowserService.recommended_browser?
|
||||||
#support_navigator_banner.row
|
#support-navigator-banner.row
|
||||||
.col-xs-12
|
.col-xs-12
|
||||||
= BROWSER.value.name
|
= BROWSER.value.name
|
||||||
= BROWSER.value.version
|
= BROWSER.value.version
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- if SwitchDeviseProfileService.new(warden).multiple_devise_profile_connect?
|
- if SwitchDeviseProfileService.new(warden).multiple_devise_profile_connect?
|
||||||
#switch_menu.dropdown.dropup
|
#switch-menu.dropdown.dropup
|
||||||
%button.btn.btn-default.dropdown-toggle{ type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
%button.btn.btn-default.dropdown-toggle{ type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
||||||
%i.fa.fa-toggle-on
|
%i.fa.fa-toggle-on
|
||||||
%span.caret
|
%span.caret
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
= action_cable_meta_tag
|
= action_cable_meta_tag
|
||||||
%body
|
%body
|
||||||
= render partial: 'layouts/support_navigator_banner'
|
= render partial: 'layouts/support_navigator_banner'
|
||||||
#beta{ class: (Rails.env == 'production' ? '' : 'beta_staging') }
|
#beta{ class: (Rails.env == 'production' ? '' : 'beta-staging') }
|
||||||
- if Rails.env == 'production'
|
- if Rails.env == 'production'
|
||||||
Beta
|
Beta
|
||||||
- else
|
- else
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
- main_container_size = 12
|
- main_container_size = 12
|
||||||
|
|
||||||
= render partial: 'layouts/main_container', locals: { main_container_size: main_container_size }
|
= render partial: 'layouts/main_container', locals: { main_container_size: main_container_size }
|
||||||
#mask_search
|
#mask-search
|
||||||
%h1
|
%h1
|
||||||
%i.fa.fa-times{ style: 'position: fixed; top: 10; right: 30; color: white;' }
|
%i.fa.fa-times{ style: 'position: fixed; top: 10; right: 30; color: white;' }
|
||||||
|
|
||||||
|
|
|
@ -8,21 +8,21 @@
|
||||||
|
|
||||||
%div#menu-block
|
%div#menu-block
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
#procedure_list
|
#procedure-list
|
||||||
%a{ :href => "#{url_for :admin_procedures_draft}", id: "draft-procedures" }
|
%a{ :href => "#{url_for :admin_procedures_draft}", id: "draft-procedures" }
|
||||||
.procedure_list_element{ class: @draft_class }
|
.procedure-list-element{ class: @draft_class }
|
||||||
Brouillons
|
Brouillons
|
||||||
.badge.progress-bar-default
|
.badge.progress-bar-default
|
||||||
= current_administrateur.procedures.where(published: false, archived: false).count
|
= current_administrateur.procedures.where(published: false, archived: false).count
|
||||||
|
|
||||||
%a{ :href => "#{url_for :admin_procedures}", id: "active-procedures" }
|
%a{ :href => "#{url_for :admin_procedures}", id: "active-procedures" }
|
||||||
.procedure_list_element{ class: @active_class }
|
.procedure-list-element{ class: @active_class }
|
||||||
Actives
|
Actives
|
||||||
.badge.progress-bar-success
|
.badge.progress-bar-success
|
||||||
= current_administrateur.procedures.where(published: true, archived: false).count
|
= current_administrateur.procedures.where(published: true, archived: false).count
|
||||||
|
|
||||||
%a{ :href => "#{url_for :admin_procedures_archived}", id: "archived-procedures" }
|
%a{ :href => "#{url_for :admin_procedures_archived}", id: "archived-procedures" }
|
||||||
.procedure_list_element{ class: @archived_class }
|
.procedure-list-element{ class: @archived_class }
|
||||||
Archivées
|
Archivées
|
||||||
.badge.progress-bar-purple
|
.badge.progress-bar-purple
|
||||||
= current_administrateur.procedures.where(archived: true).count
|
= current_administrateur.procedures.where(archived: true).count
|
||||||
|
|
|
@ -9,40 +9,40 @@
|
||||||
|
|
||||||
%div#menu-block
|
%div#menu-block
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
#procedure_list
|
#procedure-list
|
||||||
%a{ :href => "#{url_for admin_procedure_path(@procedure)}", id: 'onglet-infos' }
|
%a{ :href => "#{url_for admin_procedure_path(@procedure)}", id: 'onglet-infos' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Informations') }
|
.procedure-list-element{ class: ('active' if active == 'Informations') }
|
||||||
Informations
|
Informations
|
||||||
|
|
||||||
%a{ :href => "#{url_for admin_procedure_accompagnateurs_path(@procedure)}", id: 'onglet-accompagnateurs' }
|
%a{ :href => "#{url_for admin_procedure_accompagnateurs_path(@procedure)}", id: 'onglet-accompagnateurs' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Accompagnateurs') }
|
.procedure-list-element{ class: ('active' if active == 'Accompagnateurs') }
|
||||||
= t('dynamics.admin.procedure.onglets.accompagnateurs')
|
= t('dynamics.admin.procedure.onglets.accompagnateurs')
|
||||||
|
|
||||||
%a{ :href => "#{url_for edit_admin_procedure_path(@procedure)}", id: 'onglet-description' }
|
%a{ :href => "#{url_for edit_admin_procedure_path(@procedure)}", id: 'onglet-description' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Description') }
|
.procedure-list-element{ class: ('active' if active == 'Description') }
|
||||||
Description
|
Description
|
||||||
|
|
||||||
- unless @procedure.locked?
|
- unless @procedure.locked?
|
||||||
%a{ :href => "#{url_for admin_procedure_types_de_champ_path(@procedure)}", id: 'onglet-champs' }
|
%a{ :href => "#{url_for admin_procedure_types_de_champ_path(@procedure)}", id: 'onglet-champs' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Champs') }
|
.procedure-list-element{ class: ('active' if active == 'Champs') }
|
||||||
Champs
|
Champs
|
||||||
|
|
||||||
- unless @procedure.locked?
|
- unless @procedure.locked?
|
||||||
%a{ :href => "#{url_for admin_procedure_pieces_justificatives_path(@procedure)}", id: 'onglet-pieces' }
|
%a{ :href => "#{url_for admin_procedure_pieces_justificatives_path(@procedure)}", id: 'onglet-pieces' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Pieces') }
|
.procedure-list-element{ class: ('active' if active == 'Pieces') }
|
||||||
Pièces jointes
|
Pièces jointes
|
||||||
|
|
||||||
- unless @procedure.locked?
|
- unless @procedure.locked?
|
||||||
%a{ :href => "#{url_for admin_procedure_types_de_champ_private_path(@procedure)}", id: 'onglet-private-champs' }
|
%a{ :href => "#{url_for admin_procedure_types_de_champ_private_path(@procedure)}", id: 'onglet-private-champs' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Champs privés') }
|
.procedure-list-element{ class: ('active' if active == 'Champs privés') }
|
||||||
Champs privés
|
Champs privés
|
||||||
|
|
||||||
%a{ :href => "#{url_for admin_procedure_mail_templates_path(@procedure)}", id: 'onglet-inemailsfos' }
|
%a{ :href => "#{url_for admin_procedure_mail_templates_path(@procedure)}", id: 'onglet-inemailsfos' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'E-mails') }
|
.procedure-list-element{ class: ('active' if active == 'E-mails') }
|
||||||
E-mails
|
E-mails
|
||||||
|
|
||||||
%a{ :href => "#{url_for admin_procedure_previsualisation_path(@procedure)}", id: 'onglet-preview' }
|
%a{ :href => "#{url_for admin_procedure_previsualisation_path(@procedure)}", id: 'onglet-preview' }
|
||||||
.procedure_list_element{ class: ('active' if active == 'Prévisualisation') }
|
.procedure-list-element{ class: ('active' if active == 'Prévisualisation') }
|
||||||
Prévisualisation
|
Prévisualisation
|
||||||
|
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
|
|
|
@ -19,11 +19,11 @@
|
||||||
|
|
||||||
%div#infos-block
|
%div#infos-block
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
#procedure_list
|
#procedure-list
|
||||||
- @facade_data_view.gestionnaire_procedures_name_and_id_list.each do |procedure|
|
- @facade_data_view.gestionnaire_procedures_name_and_id_list.each do |procedure|
|
||||||
|
|
||||||
= link_to backoffice_dossiers_procedure_path(procedure[:id]), { title: procedure[:libelle] } do
|
= link_to backoffice_dossiers_procedure_path(procedure[:id]), { title: procedure[:libelle] } do
|
||||||
.procedure_list_element{ class: ('active' if procedure[:id] == @facade_data_view.procedure.id rescue '') }
|
.procedure-list-element{ class: ('active' if procedure[:id] == @facade_data_view.procedure.id rescue '') }
|
||||||
= truncate(procedure[:libelle], length: 50)
|
= truncate(procedure[:libelle], length: 50)
|
||||||
- total_new = @facade_data_view.new_dossier_number procedure[:id]
|
- total_new = @facade_data_view.new_dossier_number procedure[:id]
|
||||||
- if total_new > 0
|
- if total_new > 0
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
- if procedure[:unread_notifications] > 0
|
- if procedure[:unread_notifications] > 0
|
||||||
.badge.progress-bar-warning{ title: 'Notifications' }
|
.badge.progress-bar-warning{ title: 'Notifications' }
|
||||||
= procedure[:unread_notifications]
|
= procedure[:unread_notifications]
|
||||||
#notifications_list.hidden
|
#notifications-list.hidden
|
||||||
- if @facade_data_view.dossiers_with_unread_notifications.empty?
|
- if @facade_data_view.dossiers_with_unread_notifications.empty?
|
||||||
.no-notification Aucune notification pour le moment.
|
.no-notification Aucune notification pour le moment.
|
||||||
- else
|
- else
|
||||||
|
|
|
@ -1,53 +1,53 @@
|
||||||
%div#cgu_menu_block
|
%div#cgu_menu_block
|
||||||
#procedure_list{ style: 'margin-top: 0;' }
|
#procedure-list{ style: 'margin-top: 0;' }
|
||||||
= link_to cgu_path(:anchor => "editeur") do
|
= link_to cgu_path(:anchor => "editeur") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Editeur
|
Editeur
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "ingenieurie_hebergement") do
|
= link_to cgu_path(:anchor => "ingenieurie_hebergement") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Ingénierie et hébergement informatique
|
Ingénierie et hébergement informatique
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "object_website") do
|
= link_to cgu_path(:anchor => "object_website") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Object du site internet
|
Object du site internet
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "acteurs") do
|
= link_to cgu_path(:anchor => "acteurs") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Acteurs de TPS
|
Acteurs de TPS
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "CNIL") do
|
= link_to cgu_path(:anchor => "CNIL") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Déclaration CNIL
|
Déclaration CNIL
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "data_collects") do
|
= link_to cgu_path(:anchor => "data_collects") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Données collectées et responsabilité des organismes utilisateurs
|
Données collectées et responsabilité des organismes utilisateurs
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "individual_data") do
|
= link_to cgu_path(:anchor => "individual_data") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Traitement des données à caractère personnel
|
Traitement des données à caractère personnel
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "entreprise_information") do
|
= link_to cgu_path(:anchor => "entreprise_information") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Règles relatives aux informations sur les entreprises mises à disposibition
|
Règles relatives aux informations sur les entreprises mises à disposibition
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "reproduction") do
|
= link_to cgu_path(:anchor => "reproduction") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Droit de reproduction
|
Droit de reproduction
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "propriete_intellectuelle") do
|
= link_to cgu_path(:anchor => "propriete_intellectuelle") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Propriété intellectuelle
|
Propriété intellectuelle
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "navigateurs") do
|
= link_to cgu_path(:anchor => "navigateurs") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Logiciels nécessaires à la consultation
|
Logiciels nécessaires à la consultation
|
||||||
|
|
||||||
= link_to cgu_path(:anchor => "conception") do
|
= link_to cgu_path(:anchor => "conception") do
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
Conception et Réalisation
|
Conception et Réalisation
|
||||||
|
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
|
|
||||||
.procedure_list_element
|
.procedure-list-element
|
||||||
|
|
|
@ -9,34 +9,34 @@
|
||||||
|
|
||||||
%div#menu-block
|
%div#menu-block
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
#procedure_list
|
#procedure-list
|
||||||
- unless current_user.dossiers.count == 0
|
- unless current_user.dossiers.count == 0
|
||||||
%a{ :href => "#{url_for users_dossiers_path(liste: 'brouillon')}", 'data-toggle' => :tooltip, title: 'Les dossiers jamais proposés à la relecture.' }
|
%a{ :href => "#{url_for users_dossiers_path(liste: 'brouillon')}", 'data-toggle' => :tooltip, title: 'Les dossiers jamais proposés à la relecture.' }
|
||||||
.procedure_list_element{ class: @dossiers_list_facade.brouillon_class, id: 'brouillon' }
|
.procedure-list-element{ class: @dossiers_list_facade.brouillon_class, id: 'brouillon' }
|
||||||
Brouillons
|
Brouillons
|
||||||
.badge.progress-bar-default
|
.badge.progress-bar-default
|
||||||
= @dossiers_list_facade.brouillon_total
|
= @dossiers_list_facade.brouillon_total
|
||||||
|
|
||||||
%a{ :href => "#{url_for users_dossiers_path(liste: 'a_traiter')}", 'data-toggle' => :tooltip, title: 'Les dossiers qui requièrent une action de votre part.' }
|
%a{ :href => "#{url_for users_dossiers_path(liste: 'a_traiter')}", 'data-toggle' => :tooltip, title: 'Les dossiers qui requièrent une action de votre part.' }
|
||||||
.procedure_list_element{ class: @dossiers_list_facade.en_construction_class, id: 'a_traiter' }
|
.procedure-list-element{ class: @dossiers_list_facade.en_construction_class, id: 'a_traiter' }
|
||||||
En construction
|
En construction
|
||||||
.badge.progress-bar-danger
|
.badge.progress-bar-danger
|
||||||
= @dossiers_list_facade.en_construction_total
|
= @dossiers_list_facade.en_construction_total
|
||||||
|
|
||||||
%a{ :href => "#{url_for users_dossiers_path(liste: 'en_instruction')}", 'data-toggle' => :tooltip, title: 'Les dossiers en cours d\'examen par l\'administration compétante.' }
|
%a{ :href => "#{url_for users_dossiers_path(liste: 'en_instruction')}", 'data-toggle' => :tooltip, title: 'Les dossiers en cours d\'examen par l\'administration compétante.' }
|
||||||
.procedure_list_element{ class: @dossiers_list_facade.en_instruction_class, id: 'en_instruction' }
|
.procedure-list-element{ class: @dossiers_list_facade.en_instruction_class, id: 'en_instruction' }
|
||||||
En instruction
|
En instruction
|
||||||
.badge.progress-bar-default
|
.badge.progress-bar-default
|
||||||
= @dossiers_list_facade.en_instruction_total
|
= @dossiers_list_facade.en_instruction_total
|
||||||
|
|
||||||
%a{ :href => "#{url_for users_dossiers_path(liste: 'termine')}", 'data-toggle' => :tooltip, title: 'Les dossiers cloturés qui peuvent être "Accepté", "Refusé" ou "Sans suite".' }
|
%a{ :href => "#{url_for users_dossiers_path(liste: 'termine')}", 'data-toggle' => :tooltip, title: 'Les dossiers cloturés qui peuvent être "Accepté", "Refusé" ou "Sans suite".' }
|
||||||
.procedure_list_element{ class: @dossiers_list_facade.termine_class, id: 'termine' }
|
.procedure-list-element{ class: @dossiers_list_facade.termine_class, id: 'termine' }
|
||||||
Terminé
|
Terminé
|
||||||
.badge.progress-bar-success
|
.badge.progress-bar-success
|
||||||
= @dossiers_list_facade.termine_total
|
= @dossiers_list_facade.termine_total
|
||||||
|
|
||||||
%a{ :href => "#{url_for users_dossiers_path(liste: 'invite')}" }
|
%a{ :href => "#{url_for users_dossiers_path(liste: 'invite')}" }
|
||||||
.procedure_list_element{ class: @dossiers_list_facade.invite_class, id: 'invite' }
|
.procedure-list-element{ class: @dossiers_list_facade.invite_class, id: 'invite' }
|
||||||
Invitation
|
Invitation
|
||||||
.badge.progress-bar-warning
|
.badge.progress-bar-warning
|
||||||
= @dossiers_list_facade.invite_total
|
= @dossiers_list_facade.invite_total
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#search_area
|
#search-area
|
||||||
= form_tag(backoffice_dossiers_search_url, method: :get) do
|
= form_tag(backoffice_dossiers_search_url, method: :get) do
|
||||||
.input-group
|
.input-group
|
||||||
= text_field_tag('q', "#{@search_terms unless @search_terms.nil?}", id: 'q', placeholder: "Recherchez parmi tous vos dossiers", class: 'form-control')
|
= text_field_tag('q', "#{@search_terms unless @search_terms.nil?}", id: 'q', placeholder: "Recherchez parmi tous vos dossiers", class: 'form-control')
|
||||||
%span.input-group-btn
|
%span.input-group-btn
|
||||||
%button.btn.btn-default{ id: 'search_button' }
|
%button.btn.btn-default{ id: 'search-button' }
|
||||||
%i.fa.fa-search
|
%i.fa.fa-search
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.col-lg-3.col-md-3.col-sm-3.col-xs-3.options
|
.col-lg-3.col-md-3.col-sm-3.col-xs-3.options
|
||||||
.row
|
.row
|
||||||
.col-lg-12.col-md-12.col-sm-12.col-xs-12
|
.col-lg-12.col-md-12.col-sm-12.col-xs-12
|
||||||
%a.button_navbar#pref_list_dossier_open_action{ href: '#', type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
%a.button-navbar#pref-list-dossier-open-action{ href: '#', type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
||||||
%i.fa.fa-pencil
|
%i.fa.fa-pencil
|
||||||
Modifier le tableau
|
Modifier le tableau
|
||||||
%span.caret-right
|
%span.caret-right
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
#sign_out.col-xs-2.no-padding
|
#sign-out.col-xs-2.no-padding
|
||||||
= render partial: 'users/login_banner'
|
= render partial: 'users/login_banner'
|
||||||
= render partial: 'layouts/credentials'
|
= render partial: 'layouts/credentials'
|
||||||
- elsif gestionnaire_signed_in?
|
- elsif gestionnaire_signed_in?
|
||||||
#sign_out.col-xs-2.no-padding
|
#sign-out.col-xs-2.no-padding
|
||||||
= render partial: 'gestionnaires/login_banner'
|
= render partial: 'gestionnaires/login_banner'
|
||||||
= render partial: 'layouts/credentials'
|
= render partial: 'layouts/credentials'
|
||||||
- elsif administrateur_signed_in?
|
- elsif administrateur_signed_in?
|
||||||
#sign_out.col-xs-2.no-padding
|
#sign-out.col-xs-2.no-padding
|
||||||
= render partial: 'administrateurs/login_banner'
|
= render partial: 'administrateurs/login_banner'
|
||||||
= render partial: 'layouts/credentials'
|
= render partial: 'layouts/credentials'
|
||||||
- else
|
- else
|
||||||
#sign_in.col-xs-2
|
#sign-in.col-xs-2
|
||||||
= link_to "Connexion", new_user_session_path, :class => 'btn btn-lg btn-primary'
|
= link_to "Connexion", new_user_session_path, :class => 'btn btn-lg btn-primary'
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
%p.mt-1 Vous êtes intéressés ?
|
%p.mt-1 Vous êtes intéressés ?
|
||||||
%p= link_to 'Programmer une démo', "mailto:#{t('dynamics.contact_email')}?subject=Demande de démo TPS", target: '_blank', class: 'btn btn-danger btn-lg'
|
%p= link_to 'Programmer une démo', "mailto:#{t('dynamics.contact_email')}?subject=Demande de démo TPS", target: '_blank', class: 'btn btn-danger btn-lg'
|
||||||
|
|
||||||
#landing_body.max-size
|
#landing-body.max-size
|
||||||
.row#etapes.center
|
.row#etapes.center
|
||||||
#create_1.col-lg-3.col-md-3.col-sm-3.col-xs-3
|
#create_1.col-lg-3.col-md-3.col-sm-3.col-xs-3
|
||||||
%img{ src: image_url('etapes/create_1.png') }
|
%img{ src: image_url('etapes/create_1.png') }
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
|
|
||||||
.split-hr-left
|
.split-hr-left
|
||||||
|
|
||||||
#request_access.row.center
|
#request-access.row.center
|
||||||
.col-xs-12.col-sm-12.col-md-12.col-lg-12
|
.col-xs-12.col-sm-12.col-md-12.col-lg-12
|
||||||
%h3 Envie de commencer à créer votre démarche ?
|
%h3 Envie de commencer à créer votre démarche ?
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#carte_page.row
|
#carte-page.row
|
||||||
.col-md-12.col-lg-12#map{ class: dossier.procedure.module_api_carto.classes }
|
.col-md-12.col-lg-12#map{ class: dossier.procedure.module_api_carto.classes }
|
||||||
|
|
||||||
- if dossier.procedure.module_api_carto.quartiers_prioritaires
|
- if dossier.procedure.module_api_carto.quartiers_prioritaires
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.row#carto_page
|
.row#carto-page
|
||||||
.col-lg-12.col-md-12.col-sm-12.col-xs-12
|
.col-lg-12.col-md-12.col-sm-12.col-xs-12
|
||||||
%h2
|
%h2
|
||||||
Localisation
|
Localisation
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
%i.fa.fa-pencil
|
%i.fa.fa-pencil
|
||||||
Ajouter une zone
|
Ajouter une zone
|
||||||
|
|
||||||
%span#search_by_address{ style: 'margin-left: 20px;' }
|
%span#search-by-address{ style: 'margin-left: 20px;' }
|
||||||
%input.form-control{ type: :address, placeholder: 'Rechercher une adresse' }
|
%input.form-control{ type: :address, placeholder: 'Rechercher une adresse' }
|
||||||
%br
|
%br
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
= render partial: render_partial_url, locals: { libelle: 'Dossier', order_place: -1, champs: @champs }
|
= render partial: render_partial_url, locals: { libelle: 'Dossier', order_place: -1, champs: @champs }
|
||||||
- @headers.each do |header|
|
- @headers.each do |header|
|
||||||
.row
|
.row
|
||||||
%div{ class: "type_champ-#{header.type_champ}" }
|
%div{ class: "type-champ-#{header.type_champ.gsub('_', '-')}" }
|
||||||
= render partial: render_partial_url, locals: { libelle: header.libelle, order_place: header.order_place, champs: @champs }
|
= render partial: render_partial_url, locals: { libelle: header.libelle, order_place: header.order_place, champs: @champs }
|
||||||
- else
|
- else
|
||||||
.row
|
.row
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.container#description_page
|
.container#description-page
|
||||||
- unless @dossier.procedure.lien_notice.blank?
|
- unless @dossier.procedure.lien_notice.blank?
|
||||||
#lien_notice_panel.row{ style: 'width: 280px; position: fixed; background-color: white; right: 5%; top: 80px; z-index: 200;' }
|
#lien_notice_panel.row{ style: 'width: 280px; position: fixed; background-color: white; right: 5%; top: 80px; z-index: 200;' }
|
||||||
.panel.panel-info{ style: 'margin-bottom: 0;' }
|
.panel.panel-info{ style: 'margin-bottom: 0;' }
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
-# TODO use form_for
|
-# TODO use form_for
|
||||||
= form_tag(url_for({ controller: 'users/description', action: :update, dossier_id: @dossier.id }), class: 'form', method: 'POST', multipart: true) do
|
= form_tag(url_for({ controller: 'users/description', action: :update, dossier_id: @dossier.id }), class: 'form', method: 'POST', multipart: true) do
|
||||||
- unless @champs.nil?
|
- unless @champs.nil?
|
||||||
#liste_champs
|
#liste-champs
|
||||||
= render partial: 'users/description/champs', locals: { private: false }
|
= render partial: 'users/description/champs', locals: { private: false }
|
||||||
|
|
||||||
- if !@procedure.lien_demarche.blank? || @procedure.cerfa_flag || @dossier.types_de_piece_justificative.size > 0
|
- if !@procedure.lien_demarche.blank? || @procedure.cerfa_flag || @dossier.types_de_piece_justificative.size > 0
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.default_data_block.default_visible
|
.default-data-block.default_visible
|
||||||
.row.show-block.infos
|
.row.show-block.infos
|
||||||
.header
|
.header
|
||||||
.col-xs-12.title
|
.col-xs-12.title
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
- unless smart_listing.empty?
|
- unless smart_listing.empty?
|
||||||
%table#dossiers_list.table
|
%table#dossiers-list.table
|
||||||
%thead
|
%thead
|
||||||
%th#sort-id.col-md-1.col-lg-1.col-sm-1.col-xs-1= smart_listing.sortable 'Numéro', 'id'
|
%th#sort-id.col-md-1.col-lg-1.col-sm-1.col-xs-1= smart_listing.sortable 'Numéro', 'id'
|
||||||
%th#sort-libelle.col-xs-5= smart_listing.sortable 'Procédure', 'procedure.libelle'
|
%th#sort-libelle.col-xs-5= smart_listing.sortable 'Procédure', 'procedure.libelle'
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
.row.etape.etape_2
|
.row.etape.etape-2
|
||||||
= render partial: 'dossiers/etapes/etape_2/entreprise'
|
= render partial: 'dossiers/etapes/etape_2/entreprise'
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue