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,7 +62,7 @@ | ||
62 | <!-- /widget-header --> | 62 | <!-- /widget-header --> |
63 | <div class="widget-content"> | 63 | <div class="widget-content"> |
64 | <div class="widget big-stats-container"> | 64 | <div class="widget big-stats-container"> |
65 | - {% if not estado_academico.hasInscripcion %} | 65 | + {% if not estado_academico.hasInscripcion | length > 0 %} |
66 | <div class="widget-content"> | 66 | <div class="widget-content"> |
67 | 67 | ||
68 | <h6 class="bigstats alert alert-warning"> | 68 | <h6 class="bigstats alert alert-warning"> |
@@ -73,9 +73,15 @@ | @@ -73,9 +73,15 @@ | ||
73 | </div> | 73 | </div> |
74 | {% else %} | 74 | {% else %} |
75 | <div class="widget-content"> | 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 | </h6> | 85 | </h6> |
80 | </div> | 86 | </div> |
81 | 87 |