Feat: Ajout de la description des topologies et des scénarios
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
57
SNT/03_Internet/Simulation/role.tpl.html
Normal file
57
SNT/03_Internet/Simulation/role.tpl.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link href="../role.css" rel="stylesheet">
|
||||
<title>Role {{num}} </title>
|
||||
<meta name="description" content="Role">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<span id="layout">
|
||||
<img src="../{{topo}}/logo.png">
|
||||
</span>
|
||||
<span id="title">
|
||||
<p>IP: {{IP}}</p>
|
||||
</span>
|
||||
<span id="number">
|
||||
<p># {{ num }} </p>
|
||||
</span>
|
||||
</header>
|
||||
<main>
|
||||
<section id="goals">
|
||||
<h2>Objectifs:</h2>
|
||||
{% if objectifs %}
|
||||
<ul>
|
||||
{% for o in objectifs %}
|
||||
<li>{{ o }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</section>
|
||||
<section id="events">
|
||||
<h2>Particularités:</h2>
|
||||
{% if particularites %}
|
||||
<ul>
|
||||
{% for p in particularites %}
|
||||
<li>{{ p | replace("{", "") | replace("}", "") | replace("'", "")}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
∅
|
||||
{% endif %}
|
||||
</section>
|
||||
<section id="links">
|
||||
<h2>Voisins connus</h2>
|
||||
{% if liens %}
|
||||
<ul>
|
||||
{% for l in liens %}
|
||||
<li>{{ l | replace("{", "") | replace("}", "") | replace("'", "")}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user