1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 07:34:19 +00:00

Add page titles (closes #4)

This commit is contained in:
Steffo 2017-09-13 08:41:07 +02:00
parent 7cfa426c95
commit dbdf1ab409
19 changed files with 35 additions and 23 deletions

View file

@ -1,4 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiungi dispositivo • estus{% endblock %}
{% block extrahead %} {% block extrahead %}
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script> integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script>
@ -28,7 +29,7 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuovo dispositivo Aggiungi nuovo dispositivo
</h1> </h1>
<form class="form-horizontal" action="/disp_add" method="post"> <form class="form-horizontal" action="/disp_add" method="post">
<div class="form-group"> <div class="form-group">

View file

@ -1,8 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Dettagli Dispositivo{% endblock %} {% block title %}Dettagli dispositivo • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Ispeziona dispositivo Dettagli del dispositivo
</h1> </h1>
<ul class="list-group"> <ul class="list-group">
<li class="list-group-item"> <li class="list-group-item">

View file

@ -1,4 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Elenco dispositivi • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Dispositivi esistenti Dispositivi esistenti
@ -30,5 +31,4 @@
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
{% endblock %} {% endblock %}

View file

@ -1,4 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Modifica dispositivo • estus{% endblock %}
{% block extrahead %} {% block extrahead %}
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script> integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script>

View file

@ -1,8 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiunta Ente{% endblock %} {% block title %}Aggiungi ente • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuovo ente Aggiungi nuovo ente
</h1> </h1>
<form class="form-inline" action="/ente_add" method="post"> <form class="form-inline" action="/ente_add" method="post">
<input class="form-control" type="text" placeholder="Nome ente" name="nomeente"> <input class="form-control" type="text" placeholder="Nome ente" name="nomeente">

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Elenco Enti{% endblock %} {% block title %}Elenco enti • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Enti esistenti Enti esistenti

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Modifica Ente{% endblock %} {% block title %}Modifica ente • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Modifica ente Modifica ente

View file

@ -1,8 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiunta Impiegato{% endblock %} {% block title %}Aggiungi impiegato • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuovo impiegato Aggiungi nuovo impiegato
</h1> </h1>
<form class="form-inline" action="/imp_add" method="post"> <form class="form-inline" action="/imp_add" method="post">
<select class="form-control" name="sid"> <select class="form-control" name="sid">

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Dettagli Impiegato{% endblock %} {% block title %}Dettagli impiegato • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Ispeziona Impiegato Ispeziona Impiegato

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Elenco Impiegati{% endblock %} {% block title %}Elenco impiegati • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Impiegati esistenti Impiegati esistenti

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Modifica Impiegato{% endblock %} {% block title %}Modifica impiegato • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Modifica impiegato Modifica impiegato

View file

@ -1,7 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiungi rete • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuova rete Aggiungi nuova rete
</h1> </h1>
<form class="form-inline" action="/net_add" method="post"> <form class="form-inline" action="/net_add" method="post">
<input class="form-control" type="text" placeholder="Nome rete" name="nome"> <input class="form-control" type="text" placeholder="Nome rete" name="nome">

View file

@ -1,8 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Dettagli Impiegato{% endblock %} {% block title %}Dettagli rete • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Ispeziona Rete Dettagli della rete
</h1> </h1>
<ul class="list-group"> <ul class="list-group">
<li class="list-group-item"> <li class="list-group-item">

View file

@ -1,4 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Elenco reti • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Reti esistenti Reti esistenti
@ -19,7 +20,7 @@
<td>{{ rete.network_ip }}/{{ rete.subnet }}</td> <td>{{ rete.network_ip }}/{{ rete.subnet }}</td>
<td><a href="/net_details/{{ rete.nid }}"><span class="glyphicon glyphicon-list-alt"></span></a></td> <td><a href="/net_details/{{ rete.nid }}"><span class="glyphicon glyphicon-list-alt"></span></a></td>
<td>{% if not rete.network_ip == "0.0.0.0" %}<a href="/net_del/{{ rete.nid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td> <td>{% if not rete.network_ip == "0.0.0.0" %}<a href="/net_del/{{ rete.nid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td>
{% endfor %}
</tr> </tr>
{% endfor %}
</table> </table>
{% endblock %} {% endblock %}

View file

@ -1,8 +1,8 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiunta Servizio{% endblock %} {% block title %}Aggiungi servizio • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuovo servizio Aggiungi nuovo servizio
</h1> </h1>
<form class="form-inline" action="/serv_add" method="post"> <form class="form-inline" action="/serv_add" method="post">
<select class="form-control" name="eid"> <select class="form-control" name="eid">

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Lista Servizi{% endblock %} {% block title %}Elenco servizi • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Servizi esistenti Servizi esistenti

View file

@ -1,5 +1,5 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Modifica Servizio{% endblock %} {% block title %}Modifica servizio • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Modifica servizio Modifica servizio

View file

@ -1,8 +1,12 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Aggiungi utente inventario • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Aggiunta nuovo utente dell'inventario Aggiungi nuovo utente dell'inventario
</h1> </h1>
<div class="alert alert-warning">
<b>Attenzione!</b> Tutti gli utenti che verranno aggiunti qui avranno accesso in lettura e scrittura su tutto l'inventario!
</div>
<form class="form-inline" action="/user_add" method="post"> <form class="form-inline" action="/user_add" method="post">
<input class="form-control" type="text" placeholder="Nome utente" name="username"> <input class="form-control" type="text" placeholder="Nome utente" name="username">
<input class="form-control" type="password" placeholder="Password" name="passwd"> <input class="form-control" type="password" placeholder="Password" name="passwd">

View file

@ -1,8 +1,12 @@
{% extends "base.htm" %} {% extends "base.htm" %}
{% block title %}Elenco utenti inventario • estus{% endblock %}
{% block content %} {% block content %}
<h1> <h1>
Utenti dell'inventario esistenti Utenti dell'inventario esistenti
</h1> </h1>
<div class="alert alert-info">
<b>Siete al sicuro!</b> Tutte le password degli utenti di questo inventario vengono hashate e saltate con bcrypt!
</div>
<a class="btn btn-success" href="/user_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a> <a class="btn btn-success" href="/user_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
<table class="table table-hover"> <table class="table table-hover">
<thead> <thead>
@ -15,7 +19,7 @@
{% for utente in utenti %} {% for utente in utenti %}
<td>{{ utente.username }}</td> <td>{{ utente.username }}</td>
<td>{% if utenti|length >= 2 %}<a href="/user_del/{{ utente.uid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td> <td>{% if utenti|length >= 2 %}<a href="/user_del/{{ utente.uid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td>
{% endfor %}
</tr> </tr>
{% endfor %}
</table> </table>
{% endblock %} {% endblock %}