diff options
| author | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-13 12:42:36 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <rtokumori@pucp.edu.pe> | 2023-11-13 12:42:36 -0500 |
| commit | 5e4487a99f357c08662ed5dabd0c7f21664c15eb (patch) | |
| tree | 3ece23ed5e17cd814d4aafad3defc73b4e204240 /ustayml/templates/load_data | |
| parent | 5a16046eddc753b752c5ab1fdb91595adf588a6b (diff) | |
Add site index and sample dashboard BP
Diffstat (limited to 'ustayml/templates/load_data')
| -rw-r--r-- | ustayml/templates/load_data/index.html | 9 | ||||
| -rw-r--r-- | ustayml/templates/load_data/success.html | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/ustayml/templates/load_data/index.html b/ustayml/templates/load_data/index.html index 3400de3..fb5088e 100644 --- a/ustayml/templates/load_data/index.html +++ b/ustayml/templates/load_data/index.html @@ -23,7 +23,7 @@ <ul class="data-validation-list"> <li>Tipo de archivo debe ser CSV</li> <li>Tamaño debe ser <1 MiB</li> - <li>Debe existir la variable "target"</li> + <li>Debe existir la variable <code>Target</code></li> </ul> </div> </div> @@ -51,10 +51,11 @@ <div class="flex-container-horizontal"> <div class="left"> <p>El diccionario de variables lista información sobre las variables del dataset.</p> - <label for="dataset-label">Etiqueta: </label> - <input name="dataset-label" id="dataset-label" required> + <label for="dataset-label">Etiqueta*: </label> + <input name="dataset-label" id="dataset-label" required + placeholder="2023-1 EEGGCC FCI"> <p></p> - <label for="dataset-date">Fecha del conjunto de datos: </label> + <label for="dataset-date">Fecha del conjunto de datos*: </label> <input name="dataset-date" id="dataset-date" required type="date"> <div></div> diff --git a/ustayml/templates/load_data/success.html b/ustayml/templates/load_data/success.html index 442ef74..956c186 100644 --- a/ustayml/templates/load_data/success.html +++ b/ustayml/templates/load_data/success.html @@ -12,5 +12,5 @@ de riesgo de deserción.</p> <p>Podrá validar que el procesamiento terminó verificando la fecha del reporte.</p> - <a href="{{ url_for('index') }}">Regresar al dashboard</a> + <a href="{{ url_for('dashboard.index') }}">Regresar al dashboard</a> {% endblock %}
\ No newline at end of file |
