2023-11-24 13:58:03 +01:00
|
|
|
{% extends "sco_page.j2" %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
|
|
|
<script src="{{scu.STATIC_DIR}}/js/etud_info.js"></script>
|
|
|
|
<script src="{{scu.STATIC_DIR}}/js/date_utils.js"></script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
{% if action == "modifier" %}
|
2023-12-06 14:42:10 +01:00
|
|
|
{% include "assiduites/widgets/tableau_actions/modifier.j2" %}
|
2023-11-24 13:58:03 +01:00
|
|
|
{% else%}
|
2023-12-06 14:42:10 +01:00
|
|
|
{% include "assiduites/widgets/tableau_actions/details.j2" %}
|
2023-11-24 13:58:03 +01:00
|
|
|
{% endif %}
|
|
|
|
<br>
|
|
|
|
<hr>
|
|
|
|
<br>
|
|
|
|
<a href="" id="lien-retour">Retour</a>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
window.addEventListener('load', () => {
|
|
|
|
document.getElementById("lien-retour").href = document.referrer;
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2023-12-06 14:42:10 +01:00
|
|
|
{% endblock %}
|