Skip to content
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.

Commit

Permalink
hecho
Browse files Browse the repository at this point in the history
  • Loading branch information
eluiui committed Dec 10, 2024
1 parent 081fb31 commit 6528f9e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.espaciador{
margin-bottom: 10px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<o-form #notesForm service="notes" entity="notes" show-header="no" confirm-exit="false"
undo-button="false" label-header-align="center" after-insert-mode="close">
<o-text-input attr="id_students" sql-type="INTEGER" enabled="no" hidden></o-text-input>
<!-- Campo de texto -->
<o-text-input attr="nota" sql-type="VARCHAR" required="yes" placeholder="Escribe tu texto aquí"></o-text-input>

<!-- Label con la fecha actual -->
<div>
<div class="espaciador">
<label>{{ todayDate }}</label>
</div>
<!-- Campo de texto -->
<label for="LNOTE" class="espaciador">{{'LNOTE' | oTranslate}}</label>
<o-text-input attr="nota" sql-type="VARCHAR" required="yes"></o-text-input>

<o-date-input #date label-visible="false" attr="fecha" format="DD/MM/YYYY"></o-date-input>
<o-date-input #date label-visible="false" attr="fecha" format="DD/MM/YYYY" hidden></o-date-input>
<!-- Botón de acción -->
<div fxLayout="row" fxLayoutGap="16px" fxLayoutWrap style="margin-top: 10px;">
<o-button attr="addbutton" id="Add" type="RAISED" label="Add" color="primary" (click)="addNotes()"></o-button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,4 +333,6 @@ grid-column: 1 / 3;
color: black;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

2 changes: 2 additions & 0 deletions cd2024bfs4g1-frontend/src/main/ngx/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,4 +298,6 @@
"Download" : "Download",
"Save": "Save",
"TUTOR_HAS_BOOTCAMPS":"The mentor has assigned bootcamps and cannot be deleted"
"Save": "Save",
"nota":"Notes"
}
3 changes: 2 additions & 1 deletion cd2024bfs4g1-frontend/src/main/ngx/src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,5 +294,6 @@
"date_change":"Fecha del cambio",
"DUPLICATED_USRLOGIN_NAME": "El nombre de usuario ya existe",
"Download" : "Descargar",
"Save": "Guardar"
"Save": "Guardar",
"nota":"Notas"
}

0 comments on commit 6528f9e

Please sign in to comment.