aboutsummaryrefslogtreecommitdiff
path: root/ustayml/templates/students/details.html
diff options
context:
space:
mode:
authorMitsuo Tokumori <rtokumori@pucp.edu.pe>2023-11-12 17:44:28 -0500
committerMitsuo Tokumori <rtokumori@pucp.edu.pe>2023-11-12 17:44:28 -0500
commit907f8e563b648b426f93ee162f9f703013f9ad50 (patch)
tree13f2e97fccdce8138671f2ee42d164957b1d5e87 /ustayml/templates/students/details.html
parent7550b896ce360a998da788beae4b4c6f734f473e (diff)
QOF change: use SQL view for student data display
Diffstat (limited to 'ustayml/templates/students/details.html')
-rw-r--r--ustayml/templates/students/details.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/ustayml/templates/students/details.html b/ustayml/templates/students/details.html
new file mode 100644
index 0000000..6c28ea4
--- /dev/null
+++ b/ustayml/templates/students/details.html
@@ -0,0 +1,27 @@
+{% extends 'base.html' %}
+
+{% block header %}
+ <h1>{% block title %}Reporte del estudiante{% endblock %}</h1>
+ <span>Reporte generado el {{ date.strftime("%Y-%m-%d") }}</span>
+{% endblock %}
+
+{% block content %}
+ <div class="student-details-container">
+ <div id="information-left">
+ <h3>Información general:</h3>
+ <h3>Información socioeconómica:</h3>
+ <h3>Información académica:</h3>
+ </div>
+ <div id="information-right">
+ <h2>Resultado:</h2>
+ <span class="high-risk">Riesgo de deserción alto</span>
+ <ul>
+ <li>Factor de riesgo: 666</li>
+ </ul>
+ <span>Significancia de variables:</span>
+ <div class="chart">
+ <img src="{{ url_for('static', filename='img/sample-bar_chart.png') }}">
+ </div>
+ </div>
+ </div>
+{% endblock %} \ No newline at end of file