Ajout page de focus sur 1 évaluation avec shearch des évaluation miroir
This commit is contained in:
137
studenteval/templates/studenteval/cl_student_eval_detail.html
Normal file
137
studenteval/templates/studenteval/cl_student_eval_detail.html
Normal file
@@ -0,0 +1,137 @@
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Détails de l'évaluation étudiant de {{ object.sStudent }}</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.16/dist/tailwind.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="bg-gray-100">
|
||||
<div class="container mx-auto p-6">
|
||||
<h1 class="text-2xl font-bold mb-4">{% block title %}Détails de l'évaluation ({{ object.ID }}) étudiant de {{ object.sStudent }}{% endblock %}</h1>
|
||||
<div class="flex rounded-lg shadow overflow-hidden">
|
||||
<div class="bg-white rounded-lg shadow overflow-hidden w-1/3 m-3">
|
||||
<table class="w-full table-auto">
|
||||
<tbody>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Date de suivi</th>
|
||||
<td class="py-2 px-4">{{ object.dtDate }}</td>
|
||||
<th class="py-2 px-4 text-left font-semibold">Date de d'écriture</th>
|
||||
<td class="py-2 px-4">{{ object.dtCreated }}</td>
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Auteur</th>
|
||||
<td class="py-2 px-4">{{ object.sAuthor }}</td>
|
||||
<th class="py-2 px-4 text-left font-semibold">Second auteur</th>
|
||||
<td class="py-2 px-4">{{ object.sAuthor_2e }}</td>
|
||||
</tr>
|
||||
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Type de suivi</th>
|
||||
<td class="py-2 px-4" colspan="3">{{ object.get_eval_type }}</td>
|
||||
</tr>
|
||||
{% if object.nEval_Type == "1" %}
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">N° FIP</th>
|
||||
<td class="py-2 px-4">{{ object.sRef }}</td>
|
||||
<th class="py-2 px-4 text-left font-semibold">Priorité</th>
|
||||
<td class="py-2 px-4">{{ object.get_inter_priority }}</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="py-2 px-4 text-left font-semibold">Description</th>
|
||||
<td class="py-2 px-4" colspan="3">{{ object.sInter_Desc }}</td>
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Rôle de l'étudiant</th>
|
||||
<td class="py-2 px-4">{{ object.get_student_role }}</td>
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Nature de l'intervention</th>
|
||||
<td class="py-2 px-4">{{ object.get_inter_nature }}</td>
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Complexité de l'intervention</th>
|
||||
<td class="py-2 px-4" colspan="2">{{ object.get_inter_complexity }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow overflow-hidden w-3/4 m-3">
|
||||
<table class="w-full table-auto border-solid">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th class="py-2 px-4 border-solid border-b border-r">
|
||||
Éléments positifs (auto-évaluation) => {{object.o_Auto_eval.ID}}
|
||||
</th>
|
||||
<th class="py-2 px-4 border-solid border-b border-l">
|
||||
Éléments positifs (Encadrant) => {{object.o_Encadrant_eval.ID}}
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="py-2 px-4 border-solid border-b border-r" >
|
||||
{{object.o_Auto_eval.sDesc_pos}}
|
||||
</td>
|
||||
<td class="py-2 px-4 border-solid border-b border-l" >
|
||||
{{object.o_Encadrant_eval.sDesc_pos}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="py-2 px-4"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="py-2 px-4 border-solid border-b border-r">
|
||||
Éléments à améliorer (auto-évaluation) => {{object.o_Auto_eval.ID}}
|
||||
</th>
|
||||
<th class="py-2 px-4 border-solid border-b border-l">
|
||||
Éléments améliorer (Encadrant) => {{object.o_Encadrant_eval.ID}}
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="py-2 px-4 border-solid border-b border-r" >
|
||||
{{object.o_Auto_eval.sDesc_neg}}
|
||||
</td>
|
||||
<td class="py-2 px-4 border-solid border-b border-l" >
|
||||
{{object.o_Encadrant_eval.sDesc_neg}}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="bg-white rounded-lg shadow overflow-hidden w-full" style="margin-top:10px;">
|
||||
<table class="w-full">
|
||||
<tbody>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Avis Global</th>
|
||||
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<td class="py-2 px-4">{{ object.o_Encadrant_eval.sDesc_global }}</td>
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<th class="py-2 px-4 text-left font-semibold">Avis Global (auto)</th>
|
||||
|
||||
</tr>
|
||||
<tr class="border-b">
|
||||
<td class="py-2 px-4">{{ object.o_Auto_eval.sDesc_global }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user