{% extends "base.html.twig" %} {% block BeforeAnyCSSFile %} {% for file in encore_entry_css_files('select2__init') %} {% endfor %} {% endblock %} {% set pagename = 'Sample Class' | trans %} {% block MainContent %}
{% set colsClass = 'col-xl-4 col-lg-6 col-md-6 col-xs-12' %}
{# form input elements #}
{# class full name #}
{# class short name #}
{# subject list #}
{# Fees list #}
{# Tution Fee #}
{# subject vise fee / fee will be #}
  
{# active or inactive #}
   
{# subjectwise attendance #}
   
{# Number of students #}
{# list of sessions #}
{# list of Grades Category #}
{# submit buttons #}
{{ 'Back to list'|trans }}
{% if classTemplate.id is not empty %} {# selected subject from the subject table. #}

{{ 'Attached Subjects'|trans }}

{% for key,value in classTemplate.getClassSubjectTemplates.toArray() %} {% if getAppSetting('show_deleted_records') == 'no' and value.getIsDeleted %} {% else %} {% endif %} {% endfor %}
{{ 'Name'|trans }} {{ 'Class'|trans }} {{ 'Recuring Fee'|trans }} {{ 'Credits'|trans }} {{ 'Pass marks'|trans }} {{ 'Total marks'|trans }} {{ '#'|trans }}
{{ value.getSubjectName }}
{% if value.getShortName is not empty %} ({{ value.getShortName }}) {% endif %}
{{ classTemplate.name }} {{ value.fee }} {{ value.getCredits }} {{ value.getPassMarks }} {{ value.marks }}
{# attached fees from class fee template table #}

{{ 'Attached Fees'|trans }}

{% for key,value in classFeeTemplate %} {% if getAppSetting('show_deleted_records') == 'no' and value.getIsDeleted %} {% else %} {% endif %} {% endfor %}
{{ 'Fee name'|trans }} {{ 'Amount'|trans }} {{ '#'|trans }}
{{ value.fee.name is not empty ? value.fee.name }} {{ value.amount }}
{# attached Grades #}

{{ 'Attached Grades'|trans }}

{% for key,value in classTemplate.classGradeTemplates.toArray %} {% endfor %}
{{ 'Name'|trans }} {{ 'Apply when number equal or greater than'|trans }} {{ 'Grade Category'|trans }} {{ '#'|trans }}
{{ value.getGradeName }} {{ value.getMarksEqualOrGreaterThan }} {{ value.getStudentGradeCategory.getGradeCategoryName }}
{% endif %} {% endblock %} {% block ExtraJsFIles %} {% for file in encore_entry_js_files('classes') %} {% endfor %} {% for file in encore_entry_js_files('subjects') %} {% endfor %} {% for file in encore_entry_js_files('studentFee') %} {% endfor %} {% for file in encore_entry_js_files('studentGrade') %} {% endfor %} {% endblock %} {% block documentation %}
Add/Editing a Sample Class?

When you editing a Sample Class, you will see all related information attached to Sample Class

{% endblock %}