forked from ScoDoc/ScoDoc
78 lines
2.3 KiB
Django/Jinja
78 lines
2.3 KiB
Django/Jinja
{# Table bilan résultats d'UEs #}
|
|
|
|
{% extends "sco_page.j2" %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
|
|
<style>
|
|
table.gt_table {
|
|
border: 2px solid rgb(193, 165, 165);
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
/* bordures entre semestres */
|
|
table.gt_table td.col_s1 + td.col_s2,
|
|
table.gt_table td.col_s2 + td.col_s3,
|
|
table.gt_table td.col_s3 + td.col_s4,
|
|
table.gt_table td.col_s4 + td.col_s5,
|
|
table.gt_table td.col_s5 + td.col_s6,
|
|
table.gt_table td.col_s6 + td.col_s7,
|
|
table.gt_table td.col_s7 + td.col_s8,
|
|
table.gt_table td.col_s8 + td.col_s9,
|
|
table.gt_table td.col_s9 + td.col_s10 {
|
|
border-left: 2px solid rgb(193, 165, 165); /* or border-right, depending on layout */
|
|
}
|
|
table.gt_table td {
|
|
border-bottom: 1px solid rgb(193, 165, 165);
|
|
}
|
|
|
|
table.dataTable tbody tr:nth-child(odd),
|
|
table.dataTable tbody tr:nth-child(odd) td.dtfc-fixed-start {
|
|
background-color: rgb(226, 241, 243);
|
|
}
|
|
table.dataTable tbody tr:nth-child(even),
|
|
table.dataTable tbody tr:nth-child(even) td.dtfc-fixed-start {
|
|
background-color: rgb(254, 255, 246);
|
|
}
|
|
|
|
</style>
|
|
{% endblock styles %}
|
|
|
|
{% block app_content %}
|
|
<div class="pageContent">
|
|
|
|
<h2>Bilan des UEs validées dans leur cursus par les étudiants du semestre</h2>
|
|
|
|
<div class="scobox warning">page expérimentale, à utiliser avec précaution, merci de commenter sur le
|
|
<a class="stdlink" noreferer href="{{scu.SCO_DISCORD_ASSISTANCE|safe}}">{{scu.SCO_DISCORD_ASSISTANCE}}</a>.
|
|
</div>
|
|
|
|
<div>
|
|
{{table.html()|safe}}
|
|
</div>
|
|
<a title="export excel" href="{{
|
|
url_for('notes.formsemestre_bilan_ues', scodoc_dept=g.scodoc_dept, formsemestre_id=sco.formsemestre.id, fmt='xls')
|
|
}}">{{scu.ICON_XLS|safe}}</a>
|
|
|
|
</div>
|
|
|
|
<div class="scobox help explanation">
|
|
<h3>Explications</h3>
|
|
<p>Cette page affiche le bilan des UEs validées (avec une décision de jury enregistrée)
|
|
par les étudiants inscrits dans le semestre {{sco.formsemestre.titre_mois()}}.</p>
|
|
<p>Les UEs sont classées par semestre, puis par UE.</p>
|
|
<p>Pour chaque UE, on ne montre que la <em>meilleure</em> validation.</p>
|
|
<p>Attention, les UEs peuvent avoir été validées dans des semestres différents,
|
|
relevant éventuellement de versions de formations différentes.</p>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script src="{{scu.STATIC_DIR}}/js/groups_view.js"></script>
|
|
{% endblock %}
|