-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: paginas de listado de alumnos que cursan una materia
- Loading branch information
1 parent
cec7ee5
commit 6808791
Showing
24 changed files
with
798 additions
and
108 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/ArquitecturaSO.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const ArquitecturaSO = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default ArquitecturaSO; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/BaseDeDatos.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const BaseDeDatos = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default BaseDeDatos; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/BaseDeDatosDos.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const BaseDeDatosDos = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default BaseDeDatosDos; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/GestionDS.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const GestionDS = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default GestionDS; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/Ingles.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const Ingles = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default Ingles; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/InglesDos.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const InglesDos = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default InglesDos; |
28 changes: 28 additions & 0 deletions
28
.../src/components/Pages/Estadisticas/SubPages/PaginasMaterias/IntroduccionAnalisisDatos.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const IntroduccionAnalisisDatos = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default IntroduccionAnalisisDatos; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/Legislacion.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const Legislacion = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default Legislacion; |
28 changes: 28 additions & 0 deletions
28
FrontAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/Matematica.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const Matematica = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default Matematica; |
28 changes: 28 additions & 0 deletions
28
...tAdmin/src/components/Pages/Estadisticas/SubPages/PaginasMaterias/MetodologiaSistemas.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Tabla from './Tabla'; | ||
|
||
const MetodologiaSistemas = () => { | ||
const headers = ['Nombre', 'Legajo', 'DNI', 'Situación', 'Año Ingreso']; | ||
|
||
const data = [ | ||
{ | ||
Nombre: 'Juan Pérez', | ||
Legajo: '12345', | ||
DNI: '12345678', | ||
Situación: { status: 'Habilitado' }, | ||
'Año Ingreso': '2022', | ||
}, | ||
{ | ||
Nombre: 'María García', | ||
Legajo: '67890', | ||
DNI: '87654321', | ||
Situación: { status: 'Inhabilitado' }, | ||
'Año Ingreso': '2021', | ||
}, | ||
// Agrega más datos según sea necesario | ||
]; | ||
|
||
return <Tabla headers={headers} data={data} />; | ||
}; | ||
|
||
export default MetodologiaSistemas; |
Oops, something went wrong.