21 lines
482 B
HTML
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 %}
|