Skip to content

Commit

Permalink
Merge pull request #633 from nvidela/bba_observaciones
Browse files Browse the repository at this point in the history
correcciones
  • Loading branch information
nvidela authored Aug 26, 2020
2 parents 1666fcd + c65cb54 commit fd7ee79
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
3.6.5
3.6.6

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<table class="gridtable">
<?php if (count($course_subject_students_first_q = $student->getCourseSubjectStudentsForBimesterFirstQuaterly($student_career_school_year)) > 0): ?>
<tr>
<th class='th-subject-name'><?php echo __('Bimestrales')?> - 1°C</th>
<th class='th-subject-name'><?php echo __('Bimestrales')?> - 1°C </th>
<th colspan="3"></th>
</tr>
<?php endif; ?>
Expand All @@ -31,7 +31,7 @@
<td class='subject_name'><?php echo $course_subject_student->getCourseSubject()->getCareerSubject()->getSubject()->getName() ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(1) ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(2) ?></td>
<td class="observation_mark_bimester"><?php echo BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor( $course_subject_student->getObservationFinal()) ?></td>
<td class="observation_mark_bimester"><?php echo (! is_null($course_subject_student->getObservationFinal()))? BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor( $course_subject_student->getObservationFinal()) : '' ?></td>
</tr>
<?php endforeach; ?>
</table>
Expand All @@ -49,7 +49,7 @@
<td class='subject_name'><?php echo $course_subject_student->getCourseSubject()->getCareerSubject()->getSubject()->getName() ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(1) ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(2) ?></td>
<td class="observation_mark_bimester"><?php echo BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObervationFinal()) ?></td>
<td class="observation_mark_bimester"><?php echo (!is_null($course_subject_student->getObservationFinal())) ? BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()) : '' ?></td>
</tr>
<?php endforeach; ?>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<td class='subject_name'><?php echo $course_subject_student->getCourseSubject()->getCareerSubject()->getSubject()->getName() ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(1) ?></td>
<td class="observation_mark_bimester"><?php echo $course_subject_student->getObservationForIsClosed(2) ?></td>
<td class="observation_mark_bimester"><?php echo BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()) ?></td>
<td class="observation_mark_bimester"><?php echo (!is_null($course_subject_student->getObservationFinal())) ? BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()):'' ?></td>

</tr>
<?php endforeach; ?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<td><?php echo $course_subject_student->getObservationForIsClosed(1) ?></td>
<td><?php echo $course_subject_student->getObservationForIsClosed(2) ?></td>
<td><?php echo $course_subject_student->getObservationForIsClosed(3) ?></td>
<td><?php echo BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()) ?></td>
<td><?php echo (! is_null($course_subject_student->getObservationFinal())) ? BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()): '' ?></td>
</tr>
<?php endforeach; ?>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<td class="observation_mark_trimester"><?php echo $course_subject_student->getObservationForIsClosed(1) ?></td>
<td class="observation_mark_trimester"><?php echo $course_subject_student->getObservationForIsClosed(2) ?></td>
<td class="observation_mark_trimester"><?php echo $course_subject_student->getObservationForIsClosed(3)?></td>
<td class="observation_mark_trimester"><?php echo BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()) ?></td>
<td class="observation_mark_trimester"><?php echo (!is_null($course_subject_student->getObservationFinal())) ? BaseCustomOptionsHolder::getInstance('ObservationFinalType')->getStringFor($course_subject_student->getObservationFinal()) : '' ?></td>
</tr>
<?php endforeach; ?>
</table>

0 comments on commit fd7ee79

Please sign in to comment.