aboutsummaryrefslogtreecommitdiff
path: root/ustayml/templates/students/details.html
blob: ed79961d6d04c092f4e168d8002d57ad3cd0cc83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends 'base.html' %}

{% block header %}
  <a href="#" onclick="window.history.go(-1); return false;">Regresar</a>
  <div class="flex-container-horizontal">
    <h1>{% block title %}Reporte del estudiante{% endblock %}</h1>
    <span>Reporte generado el {{ date.strftime("%Y-%m-%d") }}</span>
  </div>
{% endblock %}

{% block content %}
  <div class="student-details-body">
    <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 %}