Ajout colonne module sur page recap inscriptions

This commit is contained in:
Emmanuel Viennet 2024-02-09 15:36:37 +01:00
parent 39e7ad3ad6
commit 6cbeeedb1c
1 changed files with 2 additions and 0 deletions

View File

@ -319,6 +319,7 @@ def moduleimpl_inscriptions_stats(formsemestre_id):
<tr> <tr>
{'<th>UE</th>' if not is_apc else ""} {'<th>UE</th>' if not is_apc else ""}
<th>Code</th> <th>Code</th>
<th>Module</th>
<th>Inscrits</th> <th>Inscrits</th>
<th></th> <th></th>
</tr> </tr>
@ -348,6 +349,7 @@ def moduleimpl_inscriptions_stats(formsemestre_id):
<td class="formsemestre_status_code">{ <td class="formsemestre_status_code">{
modimpl.module.code or "(module sans code)" modimpl.module.code or "(module sans code)"
}</td> }</td>
<td class="formsemestre_status_module">{modimpl.module.titre or ""}</td>
<td class="formsemestre_status_inscrits">{ <td class="formsemestre_status_inscrits">{
mod_nb_inscrits[modimpl.id]}</td><td>{c_link}</td> mod_nb_inscrits[modimpl.id]}</td><td>{c_link}</td>
</tr> </tr>