{# USE when requested for ajax request. #} {% set colsClass = 'col-xl-4 col-lg-6 col-md-6 col-xs-12' %} {% set requireSymbol = '*' %}

{{ 'Update class'|trans }}

{# form input elements #}
{# class full name #}
{# class short name #}
{# fees list #}
{# Class Subject list #}
{#Teacher List #}
{# Grades list #}
{# Fee #}
{# active or inactive #}
   
{# subjectwise attendance #}
   
{# subjectwise fee #}
   
{# Number of students #}
{# submit buttons #}
{# list of subjects #}

{{ 'List of Subjects'|trans }}

{# list of attached subjects with the class from the class_subject table. #} {# #} {% for value in relatedSubject %} {% if getAppSetting('show_deleted_records') == 'no' and value.getIsDeleted %} {% else %} {# #} {% endif %} {% endfor %}
{{ 'Subject'|trans }} {{ 'Total marks'|trans }} {{ 'Pass marks'|trans }} {{ 'Fee'|trans }}{{ '#'|trans }}
{{ value.getSubjectName }} {{ value.getMarks }} {{ value.getPassMarks }} {{ value.getFee }}#} {# #} {# #} {#
{# list of the fees #}

{{ 'List of Attached Fees'|trans }}

{# list of attached subjects with the class from the class_subject table. #} {# #} {% for value in attached_fee_list_with__classes %} {% if getAppSetting('show_deleted_records') == 'no' and value.getIsDeleted %} {% else %} {# #} {% endif %} {% endfor %}
{{ 'Name'|trans }} {{ 'Amount'|trans }}{{ '#'|trans }}
{{ value.fee.name }} {{ value.amount }}#} {# #} {# #} {#
{# list of teacher Attached to the Class #}

{{ 'Teachers Assigned'|trans }}

{# list of attached subjects with the class from the class_subject table. #} {# #} {% for value in class.getAllocateTeacherToClassAndSubjects %} {% if value.getClassSubject is empty %} {% if getAppSetting('show_deleted_records') == 'no' and value.getIsDeleted %} {% else %} {# #} {% endif %} {% endif %} {% endfor %}
{{ 'Name'|trans }} {{ 'Email'|trans }} {{ 'Assign From'|trans }} {{ 'Assign To'|trans }}{{ '#'|trans }}
{{ value.getTeacher.getFullName }} {{ value.getTeacher.getEmail }} {{ date_format( value.getAssignFromDate ) }} {{ date_format( value.getAssignToDate ) }}#} {# #} {# #} {#
{# list of the Grades #}

{{ 'Grades'|trans }}

{# list of attached subjects with the class from the class_subject table. #} {# #} {% for value in class.classGrades.toArray %} {# #} {% endfor %}
{{ 'Name'|trans }} {{ 'Apply when number equal or greater than'|trans }} {{ 'Grade Category'|trans }}{{ '#'|trans }}
{{ value.getClassGradeName }} {{ value.getClassMarksEqualOrGreaterThan }} {{ value.getStudentGradeCategory.getGradeCategoryName }}#} {# #} {# #} {#
{# model for editing the class_subject table. #} {##}