@@ -16,45 +16,36 @@
{% endblock %}
\ No newline at end of file
diff --git a/app/templates/entreprises/fiche_entreprise.html b/app/templates/entreprises/fiche_entreprise.html
index 7bb61137c..b8d4b123d 100644
--- a/app/templates/entreprises/fiche_entreprise.html
+++ b/app/templates/entreprises/fiche_entreprise.html
@@ -95,7 +95,7 @@
{{ data[0].date_debut.strftime('%d/%m/%Y') }} |
{{ data[0].date_fin.strftime('%d/%m/%Y') }} |
- {{(data[0].date_fin-data[0].date_debut).days//7}} semaines |
+ {{ (data[0].date_fin-data[0].date_debut).days//7 }} semaines |
{{ data[0].type_offre }} |
{{ data[1].nom|format_nom }} {{ data[1].prenom|format_prenom }} |
{% if data[0].formation_text %}{{ data[0].formation_text }}{% endif %} |
@@ -118,13 +118,13 @@
- Date début |
- Date fin |
- Durée |
- Type |
- Étudiant |
- Formation |
- Notes |
+ Date début |
+ Date fin |
+ Durée |
+ Type |
+ Étudiant |
+ Formation |
+ Notes |
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
Action |
{% endif %}
diff --git a/app/templates/entreprises/fiche_entreprise_validation.html b/app/templates/entreprises/fiche_entreprise_validation.html
index 2f243b24d..c2d7be3d5 100644
--- a/app/templates/entreprises/fiche_entreprise_validation.html
+++ b/app/templates/entreprises/fiche_entreprise_validation.html
@@ -16,32 +16,6 @@
- {% if correspondants %}
-
- {% for correspondant in correspondants %}
-
-
Correspondant
-
- Nom : {{ correspondant.nom }}
- Prénom : {{ correspondant.prenom }}
- {% if correspondant.telephone %}
- Téléphone : {{ correspondant.telephone }}
- {% endif %}
- {% if correspondant.mail %}
- Mail : {{ correspondant.mail }}
- {% endif %}
- {% if correspondant.poste %}
- Poste : {{ correspondant.poste }}
- {% endif %}
- {% if correspondant.service %}
- Service : {{ correspondant.service }}
- {% endif %}
-
-
- {% endfor %}
-
- {% endif %}
-
Valider
Supprimer
diff --git a/app/templates/entreprises/form.html b/app/templates/entreprises/form.html
index 071f84fda..5aa9fc6d7 100644
--- a/app/templates/entreprises/form.html
+++ b/app/templates/entreprises/form.html
@@ -25,5 +25,21 @@
var closest_form_control = champ_depts.closest(".form-control")
closest_form_control.classList.remove("form-control")
}
+
+ document.getElementById("type_offre").addEventListener("change", expiration);
+
+ function expiration() {
+ var date = new Date()
+ var expiration = document.getElementById("expiration_date")
+ var type_offre = document.getElementById("type_offre").value
+ if (type_offre == "Alternance") {
+ expiration.value = `${date.getFullYear() + 1}-01-01`
+ } else {
+ if(date.getMonth() + 1 < 7)
+ expiration.value = `${date.getFullYear()}-07-01`
+ else
+ expiration.value = `${date.getFullYear() + 1}-07-01`
+ }
+ }
{% endblock %}
\ No newline at end of file