forked from ScoDoc/ScoDoc
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
|
{# -*- mode: jinja-html -*- #}
|
||
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
{% if logs %}
|
||
|
<div class="container">
|
||
|
<h3>Dernières opérations</h3>
|
||
|
<ul>
|
||
|
{% for log in logs %}
|
||
|
<li><span style="margin-right: 10px;">{{ log.date.strftime('%d %b %Hh%M') }}</span><span>{{ log.text|safe }} par {{ log.authenticated_user|get_nomcomplet }}</span></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
<div class="container">
|
||
|
<h1>Liste des entreprises à valider</h1>
|
||
|
{% if entreprises %}
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-bordered table-hover">
|
||
|
<tr>
|
||
|
<th>SIRET</th>
|
||
|
<th>Nom</th>
|
||
|
<th>Adresse</th>
|
||
|
<th>Code postal</th>
|
||
|
<th>Ville</th>
|
||
|
<th>Pays</th>
|
||
|
<th>Action</th>
|
||
|
</tr>
|
||
|
{% for entreprise in entreprises %}
|
||
|
<tr class="table-row active">
|
||
|
<th><a href="{{ url_for('entreprises.fiche_entreprise_validation', id=entreprise.id) }}">{{ entreprise.siret }}</a></th>
|
||
|
<th>{{ entreprise.nom }}</th>
|
||
|
<th>{{ entreprise.adresse }}</th>
|
||
|
<th>{{ entreprise.codepostal }}</th>
|
||
|
<th>{{ entreprise.ville }}</th>
|
||
|
<th>{{ entreprise.pays }}</th>
|
||
|
<th>
|
||
|
<a class="btn btn-primary" href="{{ url_for('entreprises.validate_entreprise', id=entreprise.id) }}">Valider</a>
|
||
|
</th>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
{% else %}
|
||
|
<div>Aucune entreprise à valider</div>
|
||
|
<br>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endblock %}
|