{% extends "::base.html.twig" %} {% form_theme form inline_form_theme %} {% block title 'List Of SubCategories' %} {% block content %}
List Of SubCategories
{{ form(form) }} {% for scat in pagination %} {% set id = scat.getId() %} {% else %} {% endfor %}
{{ knp_pagination_sortable(pagination, 'SubCategory', 's.name') }} Linked CategoriesLinked Indicators
{{ knp_pagination_render(pagination) }}
{{ scat.getName() }}
{{ include('AlsuiteProjectBundle:SubCategory:del.html.twig', {'id': id, 'action': 'Delete', 'object': 'SubCategory', 'route': path('scat_del', {'id': id})}) }}
{% for linkage in scat.getLinkedCategories() %} {{ linkage.getCategory().getName() }}, {% endfor %} {% for linkage in scat.getLinkedIndicators() %} {{ linkage.getIndicator().getName() }}, {% endfor %}
There are either no sub-categories or none that match your search criteria.
Create A SubCategory
{% endblock %} {% block javascripts %} {{ form_javascript(form) }} {% endblock %}