{% extends 'base-admin.html.twig' %}


{% block content %}

<div class="page-title">
    <div class="title_left">
    <h3>Partenaires de referencement</small></h3>
    </div>

    <div class="title_right">
        <div class="col-md-1 col-sm-1  form-group pull-right top_search">
            <a href="{{path('partenaire_create')}}" class="btn btn-success" title="Ajouter"><i  class="fa fa-plus"></i></a>
        </div>
    </div>
    
</div>

<div class="clearfix"></div>

<div class="row" style="display: block;">
    <div class="col-md-12 col-sm-12  ">
    <div class="x_panel">
        <div class="x_title">
        <h2>Partenaires table liste </h2>
       
        <div class="clearfix"></div>
        </div>
        <div class="x_content">

        <table class="table">
            <thead>
            <tr>
                <th>#</th>
                <th>Nom prestataire</th>
                <th>Type</th>
                <th>Adresse</th>
                <th>Email</th>
                <th>Telephones</th>
                <th> Pays</th>
                <th>Action</th>
            </tr>
            </thead>
            <tbody>

            {% for item in partenaires %}
                <tr>
                    <th >{{ loop.index }}</th>
                    <td>{{ item.nom}}</td>
                    <td>{{ item.type.type}}</td>
                    <td>{{ item.addresse}}</td>
                    <td>{{ item.email}}</td>
                    <td>{{ item.tel1}}</td>
                    <td>{{ item.pays.nom}}</td>
                    <td class="table-action-class" style="text-align:center; font-size:20px">
                    <a href="{{ path('partenaire_edit', {'id': item.id}) }}" title="Editer">
                                            <i class="fa fa-edit"></i>
                                        </a>
                    </td>
                </tr> 

            {% else %}
                 <tr>
                    <th colspan="6">Aucune correspondance trouvée</th>
                </tr> 
            {% endfor %}
            </tbody>
        </table>

        </div>
    </div>
</div>
{% endblock %}

