Css update
This commit is contained in:
parent
6a8c9c67de
commit
9fcc0920e6
6 changed files with 50 additions and 52 deletions
|
@ -3,10 +3,6 @@
|
|||
// You can use Sass (SCSS) here: http://sass-lang.com/
|
||||
@import "bootstrap";
|
||||
|
||||
table {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#carte_page {
|
||||
#map {
|
||||
@extend .col-md-12;
|
||||
|
|
|
@ -81,7 +81,7 @@ class Admin::ProceduresController < AdminController
|
|||
return render 'edit'
|
||||
end
|
||||
|
||||
flash.notice = 'Préocédure modifiée'
|
||||
flash.notice = 'Procédure modifiée'
|
||||
redirect_to edit_admin_procedure_path(id: @procedure.id)
|
||||
end
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
= f.button :submit, 'Mettre à jour', class: "btn-success"
|
||||
|
||||
.row
|
||||
.col-md-6
|
||||
.col-md-8
|
||||
%table.table
|
||||
%tr
|
||||
%th
|
||||
|
@ -23,8 +23,9 @@
|
|||
%tr
|
||||
%td.center
|
||||
%b.text-success
|
||||
\--
|
||||
= balise.first
|
||||
\--
|
||||
= raw "--#{balise.first}--"
|
||||
-# \--
|
||||
-# = balise.first
|
||||
-# \--
|
||||
%td
|
||||
=balise.second[:description]
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
|
||||
%br
|
||||
|
||||
-{libelle: 'Libellé*', description: 'Description*', organisation: 'Organisation', direction: 'Direction', lien_site_web: 'Lien site internet', lien_notice: 'Lien notice'}.each do |key, value|
|
||||
.form-group
|
||||
%h4
|
||||
|
@ -23,27 +20,29 @@
|
|||
Fichier accepté : JPG / JPEG / PNG
|
||||
.col-xs-6
|
||||
%h4 Drapeau européen
|
||||
.checkbox
|
||||
%label
|
||||
=f.check_box :euro_flag
|
||||
Afficher le drapeau européen
|
||||
|
||||
%br
|
||||
|
||||
.row
|
||||
.col-xs-6
|
||||
%h4 Cartographie
|
||||
|
||||
= f.fields_for :module_api_carto, @procedure.module_api_carto do |ff|
|
||||
.checkbox
|
||||
%label
|
||||
=ff.check_box :use_api_carto, {id: :procedure_module_api_carto_use_api_carto}
|
||||
Utilisation de la cartographie
|
||||
|
||||
%ul#modules_api_carto
|
||||
%li
|
||||
.checkbox
|
||||
%label
|
||||
= ff.check_box :quartiers_prioritaires
|
||||
Quartiers Prioritaires
|
||||
%li
|
||||
.checkbox
|
||||
%label
|
||||
= ff.check_box :cadastre
|
||||
Cadastre
|
||||
|
@ -51,26 +50,28 @@
|
|||
.col-xs-6
|
||||
- if @procedure.cerfa_flag
|
||||
%h4 Formulaire de demande ou CERFA
|
||||
.checkbox
|
||||
%label
|
||||
=f.check_box :cerfa_flag
|
||||
Activer l'envoi de formulaire de demande ou CERFA
|
||||
%br
|
||||
=f.text_field :lien_demarche, class: 'form-control', placeholder: 'URL vers le formulaire vierge (facultatif)'
|
||||
|
||||
%br
|
||||
.row
|
||||
.col-xs-6
|
||||
%h4 Particuliers
|
||||
%div
|
||||
%ul.list-unstyled
|
||||
%li
|
||||
.checkbox
|
||||
%label
|
||||
=f.check_box :for_individual
|
||||
Cette procédure s'adresse à un public qui
|
||||
%b
|
||||
ne possède pas (ou pas encore) de numéro SIRET,
|
||||
qui doivent donc s'identifier en tant que personne physique.
|
||||
qui doit donc s'identifier en tant que personne physique.
|
||||
|
||||
%ul#individual_with_siret{style:'margin-top: 8px'}
|
||||
%ul.list-unstyled#individual_with_siret{style:'margin-left: 15px'}
|
||||
%li
|
||||
.checkbox
|
||||
%label
|
||||
=f.check_box :individual_with_siret
|
||||
Donner la possibilité de renseigner un SIRET au cours de la construction du dossier.
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
#procedure_new.section.section-label
|
||||
= form_for @procedure, url: url_for({controller: 'admin/procedures', action: :update, id: @procedure.id}), multipart: true do |f|
|
||||
= render partial: 'informations', locals: {f: f}
|
||||
= f.submit 'Editer', class: 'btn btn-success', style: 'float:right'
|
||||
%br
|
||||
%br
|
||||
|
||||
.text-right
|
||||
= f.submit 'Editer', class: 'btn btn-success'
|
||||
|
|
|
@ -70,18 +70,18 @@
|
|||
Champs
|
||||
.badge.progress-bar-info
|
||||
= @facade.procedure.types_de_champ.size
|
||||
%ul
|
||||
- @facade.procedure.types_de_champ.order(:order_place).each do |champ|
|
||||
= champ.libelle
|
||||
%br
|
||||
%li= champ.libelle
|
||||
|
||||
.champs_private.col-xs-6.col-md-3
|
||||
%h4.text-info
|
||||
Champs privés
|
||||
.badge.progress-bar-info
|
||||
= @facade.procedure.types_de_champ_private.size
|
||||
%ul
|
||||
- @facade.procedure.types_de_champ_private.order(:order_place).each do |champ|
|
||||
= champ.libelle
|
||||
%br
|
||||
%li= champ.libelle
|
||||
|
||||
.pieces_justificatives.col-xs-6.col-md-3
|
||||
%h4.text-info
|
||||
|
|
Loading…
Reference in a new issue