{% extends "base.html.twig" %} {% set pagename = 'Sample Subjects' | trans %} {% set addBtnTitle = 'Add Sample Subject?' | trans %} {% set addBtnLink = path('add_subject') %} {% block MainContent %} {# List of Custom Fields #}
{% for subject in subject_list %} {# this field visible to following roles. #} {% endfor %}
{{ 'Name'|trans }} {{ 'Credit Hrs'|trans }} {{ 'Fee'|trans }} {{ 'Hidden'|trans }} {{ '#'|trans }}
{{ subject.getSubjectName }}
{% if subject.getShortName is not empty %} ({{ subject.getShortName }}) {% endif %}
{{ subject.getCredits }} {{ subject.getFee }} {% if subject.getHidden %} {{ 'Yes' | trans }} {% else %} {{ 'No' | trans }} {% endif %}
{% endblock %} {% block documentation %}
Manage Sample Subjects?

A1. See Fig, To Check Flow
From where they are manage?

At this page you're viewing the List of {{ 'Sample Subjects' | trans }}, which are currently in use by the Sample Classes, In this Sample Subject List, you will see the following information:

These {{ 'Sample Subjects' | trans }} can be used in the {{ 'Sample Classes' | trans }}, When choose {{ 'Sample Subjects' }} while adding/editing {{ 'Sample Classes' | trans }} then {{ 'Sample Subjects' | trans }} will convert into {{ 'Subjects'|trans }}

All the above listed items can be change or remove by editing the Sample Subject.

{% endblock %}