{% extends 'base.html.twig' %} {% block title %}Types de tarifs {% endblock %} {% block body %}
Liste des types de tarifs
{% for cost_category in cost_categories %} {% else %} {% endfor %}
Id Name HourlyCost Resource Actions
{{ cost_category.id }} {{ cost_category.name }} {{ cost_category.hourlyCost }} {{ cost_category.resource.getName() }} {{ include('cost_category/_button_show.html.twig', {'id': cost_category.id}) }} {{ include('cost_category/_button_edit.html.twig') }} {{ include('cost_category/_delete_form.html.twig') }}
no records found
{% endblock %}