diff --git a/README.md b/README.md
index 8090b85..dca5af9 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,19 @@ déployer sur un serveur ayant du php 8
créer un utilisateur et sa base
+## en postgresql
+```shell
sudo -u postgres psql -c "CREATE USER sf WITH PASSWORD 'sfrgdHYJi56631lyshFSQGfd45452ùwdf54f8fg5dfhg5_tyfdgthIOPHFUGH';"
sudo -u postgres psql -c "CREATE DATABASE \"osm-my-commerce\" OWNER sf;"
+```
+## en mysql
+
+```shell
+mysql -u root -p
+CREATE USER 'sf'@'localhost' IDENTIFIED BY 'sfrgdHYJi56631lyshFSQGfd45452ùwdf54f8fg5dfhg5_tyfdgthIOPHFUGH';
+CREATE DATABASE `osm-my-commerce`;
+GRANT ALL PRIVILEGES ON `osm-my-commerce`.* TO 'sf'@'localhost';
+FLUSH PRIVILEGES;
+
+```
diff --git a/cipherbliss-osm-commerce.config.caddy b/cipherbliss-osm-commerce.config.caddy
new file mode 100644
index 0000000..d112840
--- /dev/null
+++ b/cipherbliss-osm-commerce.config.caddy
@@ -0,0 +1,24 @@
+osm-commerces.cipherbliss.com {
+ root * /home/poule/encrypted/stockage-syncable/www/development/html/osm-commerce-sf/public
+
+ # serve files directly if they can be found (e.g. CSS or JS files in public/)
+ encode zstd gzip
+ file_server
+
+ # otherwise, use PHP-FPM (replace "unix//var/..." with "127.0.0.1:9000" when using TCP)
+ php_fastcgi unix//var/run/php/php8.4-fpm.sock {
+ # only fall back to root index.php aka front controller.
+ try_files {path} index.php
+ }
+
+ # Logs
+ log {
+ output file /var/log/caddy/access-osm-commerce-sf.log
+ format console
+ }
+
+ @phpFile {
+ path *.php*
+ }
+ error @phpFile "Not found" 404
+}
\ No newline at end of file
diff --git a/templates/public/edit.html.twig b/templates/public/edit.html.twig
index f29e7ea..a2fa219 100644
--- a/templates/public/edit.html.twig
+++ b/templates/public/edit.html.twig
@@ -61,7 +61,15 @@
@@ -92,118 +100,22 @@
{% if commerce.tags_converted.amenity is defined %}
{% if commerce.tags_converted.amenity == 'townhall' %}
-
-
-
-
-
-
-
+ {% include 'public/edit/townhall.html.twig' %}
{% endif %}
{% if commerce.tags_converted.amenity == 'restaurant' %}
-
-
-
- Lundi de
-
-
- à
- .
-
-
- et
-
-
- à
- .
-
-
-
-
-
-
-
{{ 'display.address'|trans }}
-
-
-
-
-
-
-
-
-
+ {% include 'public/edit/ask_angela.html.twig' %}
+ {% include 'public/edit/wheelchair.html.twig' %}
+ {% include 'public/edit/opening_hours.html.twig' %}
+ {% include 'public/edit/address.html.twig' %}
+ {% include 'public/edit/tags.html.twig' %}
diff --git a/templates/public/edit/address.html.twig b/templates/public/edit/address.html.twig
new file mode 100644
index 0000000..16e5c83
--- /dev/null
+++ b/templates/public/edit/address.html.twig
@@ -0,0 +1,10 @@
+
+
{{ 'display.address'|trans }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/public/edit/ask_angela.html.twig b/templates/public/edit/ask_angela.html.twig
new file mode 100644
index 0000000..73fc063
--- /dev/null
+++ b/templates/public/edit/ask_angela.html.twig
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/templates/public/edit/opening_hours.html.twig b/templates/public/edit/opening_hours.html.twig
new file mode 100644
index 0000000..b93fa6c
--- /dev/null
+++ b/templates/public/edit/opening_hours.html.twig
@@ -0,0 +1,22 @@
+
+
{{ 'display.opening_hours'|trans }}
+
{{ 'display.opening_hours_description'|trans }}
+
+
+ Lundi de
+
+
+ à
+ .
+
+
+ et
+
+
+ à
+ .
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/public/edit/restaurant.html.twig b/templates/public/edit/restaurant.html.twig
new file mode 100644
index 0000000..879bf17
--- /dev/null
+++ b/templates/public/edit/restaurant.html.twig
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+ {{'display.help.cuisine'|trans}}
+
+
\ No newline at end of file
diff --git a/templates/public/edit/tags.html.twig b/templates/public/edit/tags.html.twig
new file mode 100644
index 0000000..23b39ca
--- /dev/null
+++ b/templates/public/edit/tags.html.twig
@@ -0,0 +1,22 @@
+{% block tags %}