{% if projects|length > 0 %} {% embed '@AdminLTE/Widgets/box-widget.html.twig' with {'customer': customer, 'projects': projects, 'page': page} %} {% import "project/actions.html.twig" as actions %} {% import "macros/widgets.html.twig" as widgets %} {% block box_title %}{{ 'menu.admin_project'|trans }}{% endblock %} {% block box_attributes %} id="project_list_box" data-href="{{ path('customer_projects', {'id': customer.id}) }}" data-reload="kimai.projectUpdate" {% endblock %} {% block box_tools %} {{ pagerfanta(projects, 'twitter_bootstrap3_translated', { proximity: 1, css_container_class: 'pagination pagination-sm inline', routeName: 'customer_projects', routeParams: {'id': customer.id} }) }} {% endblock %} {% block box_body_class %}no-padding{% endblock %} {% block box_tools_attributes %}data-page="{{ page }}"{% endblock %} {% block box_body %} {% for project in projects %} {% endfor %}
{{ project.name }} {{ project.comment|comment2html }} {% if project.teams|length > 0 %} {{ widgets.badge_counter(project.teams|length) }} {% else %} {{ widgets.icon('unlocked') }} {% endif %} {{ actions.project(project, 'custom') }}
{% endblock %} {% endembed %} {% endif %}