89 lines
3.4 KiB
HTML
89 lines
3.4 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
|
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
|
|
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
|
|
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
|
|
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tarekraafat/autocomplete.js@10.2.6/dist/autoComplete.min.js"></script>
|
|
|
|
<title>Aquilenet: Éligibilité FTTH</title>
|
|
<style>
|
|
{% include 'style.css' %}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="text-center">
|
|
<a href="https://www.aquilenet.fr/" id="aquilenet-title">AQUILENET</a>
|
|
</h1>
|
|
|
|
|
|
<div id="containerResults" class="container">
|
|
<a id="buttonReturnTest" type="button" class="btn btn-link page-nav-btn" href="/">
|
|
Retour test
|
|
</a>
|
|
|
|
{% if result['codeRetour'] == 0 %}
|
|
<h1 id="main-title">Test d'Éligibilité FTTH Aquilenet: Résultats</h1>
|
|
<p>Résultat pour le PTO: {{ pto }}</p>
|
|
{% for batiment in result['batiments'] %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th colspan="100">{{ batiment["referenceBatiment"] }}</th>
|
|
</tr>
|
|
</thead>
|
|
{% for etage in batiment["etages"] %}
|
|
<tr>
|
|
<td>{{ etage["reference"] }}</td>
|
|
<td>
|
|
<table>
|
|
<tr><td>Nb Lignes Actives</td><td>{{ etage["nbLignesActives"] }}</td></tr>
|
|
<tr><td>Nb Lignes Existantes</td><td>{{ etage["nbLignesExistantes"] }}</td></tr>
|
|
<tr><td>Nb Locaux FTTH</td><td>{{ etage["nbLocauxFtth"] }}</td></tr>
|
|
<tr>
|
|
<td>
|
|
<table>
|
|
<thead>
|
|
<tr><th colspan="100">Lignes</th></tr>
|
|
<tr><td>PTO</td><td>PBO</td><td>actif</td><td>commercialisable</td><td>existant</td><td>raccordable</td><td>rompu</td></tr>
|
|
</thead>
|
|
{% for ligne in etage["lignes"] %}
|
|
<tr>
|
|
<td>{{ ligne["pto"] }}</td>
|
|
<td>{{ ligne["pbo"] }}</td>
|
|
<td>{{ ligne["actif"] }}</td>
|
|
<td>{{ ligne["commercialisable"] }}</td>
|
|
<td>{{ ligne["existant"] }}</td>
|
|
<td>{{ ligne["raccordable"] }}</td>
|
|
<td>{{ ligne["rompu"] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
<h1 id="main-title">Erreur</h1>
|
|
<p>Code d'erreur: {{ result['axioneErreur']['codeErreur'] }}</p>
|
|
<p>Description de l'erreur: {{ result['axioneErreur']['libelleErreur'] }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|