{% extends 'D2BillingBundle::base_admin.html.twig' %} {% block head_script_extra %} {% endblock head_script_extra %} {% block page_header %}
{{ with_selected_form('creditlimits_list') }}

{% for k, v in app.request.query %} {% if k|lower not in ['search', 'page'] %} {% endif %} {% endfor %}
New
Displaying {{ (creditlimits.getCurrentPageNumber()-1) * creditlimits.getItemNumberPerPage() + 1 }} to {{ ((creditlimits.getCurrentPageNumber()-1) * creditlimits.getItemNumberPerPage()) + (creditlimits.getItems()|length) }} of {{ creditlimits.getTotalItemCount() }} Credit Limit records
{% endblock page_header %} {% block content %}
{% for entity in creditlimits %} {% endfor %}
{{ knp_pagination_sortable(creditlimits, 'Active', 'cl.status') }} {{ knp_pagination_sortable(creditlimits, 'Code', 'cl.code') }} {{ knp_pagination_sortable(creditlimits, 'Description', 'cl.description') }} {{ knp_pagination_sortable(creditlimits, 'Amount', 'cl.amount') }}
{{ with_selected_checkbox('creditlimits_list', entity.id) }} {{ entity.status ? 'Active' : 'Inactive' }} {{ entity.code }} {{ entity.description }} {{ d2_config('currency_symbol') }} {{ entity.amount|number_format(2, '.', ',') }}
{% endblock content %}