Files
live-campus-mcs-p-2027.2/Semaine_11/Jour_02/3_3_Jinja2/templates/index.html
T
gauvainboiche 0d071d2843 Semaine 11
2026-07-11 21:38:00 +02:00

21 lines
482 B
HTML

{% extends "base.html" %}
{% block title %}Home - Network Inventory{% endblock %}
{% block content %}
<h1>Welcome, {{ username }}.</h1>
{% if username == "administratort" %}
<p>You signed-in with ADMIN rights.</p>
{% else %}
<p>You signed-in with USER rights.</p>
{% endif %}
<h2>Devices list:</h2>
<ul>
{% for equipment in equipments %}
<li>{{ equipment.hostname }}</li>
{% endfor %}
</ul>
{% endblock %}