', methods=['POST'])
diff --git a/labonneboite/web/templates/includes/office/info_table.html b/labonneboite/web/templates/includes/office/info_table.html
index 4e02941a0..f18ecf8c7 100644
--- a/labonneboite/web/templates/includes/office/info_table.html
+++ b/labonneboite/web/templates/includes/office/info_table.html
@@ -1,21 +1,21 @@
-{{ company.name }} en un clin d'oeil
+{{ office.name }} en un clin d'oeil
- Secteur d'activités {{ company.naf_text }}
- Nombre de salariés {{ company.headcount_text }}
+ Secteur d'activités {{ office.naf_text }}
+ Nombre de salariés {{ office.headcount_text }}
|
- {% if company.email %}{{ company.email }} {% endif %}
- {% if company.website %}{{ company.website }} {% endif %}
- {% if company.phone %}Téléphone : {{ company.phone }} {% endif %}
+ {% if office.email %}{{ office.email }} {% endif %}
+ {% if office.website %}{{ office.website }} {% endif %}
+ {% if office.phone %}Téléphone : {{ office.phone }} {% endif %}
Adresse
- {% for field in company.address_fields %}
+ {% for field in office.address_fields %}
{{ field }}
{% endfor %}
|
-Mode de contact à privilégier : {{ contact_mode }}
+Mode de contact à privilégier : {{ office.recommended_contact_mode_label }}
diff --git a/labonneboite/web/templates/office/pdf_detail.html b/labonneboite/web/templates/office/pdf_detail.html
index 3e165de44..a917fcbbd 100644
--- a/labonneboite/web/templates/office/pdf_detail.html
+++ b/labonneboite/web/templates/office/pdf_detail.html
@@ -9,11 +9,11 @@
{% include "includes/office/pdf_header.html" %}
- L'entreprise {{ company.name }} est recommandée (*) par La Bonne Boite
+ L'entreprise {{ office.name }} est recommandée (*) par La Bonne Boite
{% include "includes/office/info_table.html" %}
- La voie du succès pour travailler chez {{ company.name }}
+ La voie du succès pour travailler chez {{ office.name }}
@@ -28,10 +28,10 @@ La voie du succès pour travailler chez {{ compan
|
Bravo, vous avez déjà réussi la première étape ! |
- {% for stage in stages %}
+ {% for contact_step in office.recommended_contact_steps %}
{{ loop.index + 1 }} |
- {{ stage }} |
+ {{ contact_step }} |
................. |
................. |
diff --git a/labonneboite/web/templates/office/pdf_list.html b/labonneboite/web/templates/office/pdf_list.html
index b295bd614..b9d62c4a2 100644
--- a/labonneboite/web/templates/office/pdf_list.html
+++ b/labonneboite/web/templates/office/pdf_list.html
@@ -9,9 +9,9 @@
{% include "includes/office/pdf_header.html" %}
- {% for company, contact_mode in companies %}
- {% include "includes/office/info_table.html" %}
-
+ {% for office in offices %}
+ {% include "includes/office/info_table.html" %}
+
{% endfor %}