forked from ScoDoc/ScoDoc
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.html' %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block styles %}
|
|
{{super()}}
|
|
{% endblock %}
|
|
|
|
{% block app_content %}
|
|
<h1>{{ title }}</h1>
|
|
<br>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<p>
|
|
(*) champs requis
|
|
</p>
|
|
{{ wtf.quick_form(form, novalidate=True) }}
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
{# pour les formulaires offre #}
|
|
var champ_depts = document.getElementById("depts")
|
|
if (champ_depts !== null) {
|
|
var closest_form_control = champ_depts.closest(".form-control")
|
|
closest_form_control.classList.remove("form-control")
|
|
}
|
|
|
|
if(document.getElementById("expiration_date").value === "")
|
|
expiration()
|
|
|
|
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`
|
|
}
|
|
}
|
|
</script>
|
|
{% endblock %} |