Commit 34baf486019aa2bdc020823310648fd80a9868af
1 parent
4f91917833
Exists in
master
muestra la planificacion de ña uc inscrita al estudiante
Showing
1 changed file
with
10 additions
and
4 deletions
Show diff stats
app/Resources/views/inscripcion/index.html.twig
... | ... | @@ -62,7 +62,7 @@ |
62 | 62 | <!-- /widget-header --> |
63 | 63 | <div class="widget-content"> |
64 | 64 | <div class="widget big-stats-container"> |
65 | - {% if not estado_academico.hasInscripcion %} | |
65 | + {% if not estado_academico.hasInscripcion | length > 0 %} | |
66 | 66 | <div class="widget-content"> |
67 | 67 | |
68 | 68 | <h6 class="bigstats alert alert-warning"> |
... | ... | @@ -73,9 +73,15 @@ |
73 | 73 | </div> |
74 | 74 | {% else %} |
75 | 75 | <div class="widget-content"> |
76 | - <h6 class="bigstats"> | |
77 | - No ha formalizado su inscripcion para este periodo | |
78 | - academico. | |
76 | + <h6 class="bigstats"> | |
77 | + {% for inscritas in estado_academico.hasInscripcion %} | |
78 | + Temas de la UC: {{ inscritas.idSeccion.ofertaAcademica.idMallaCurricularUc.idUnidadCurricularVolumen.idUnidadCurricular.nombre }} | |
79 | + <ol> | |
80 | + {% for planificacion in inscritas.getIdSeccion.getPlanificacion %} | |
81 | + <li>{{ planificacion.idTemaUc.nombre }}</li> | |
82 | + {% endfor %} | |
83 | + </ol> | |
84 | + {% endfor %} | |
79 | 85 | </h6> |
80 | 86 | </div> |
81 | 87 | ... | ... |