diff --git a/server.py b/server.py index b8568b5..e184549 100644 --- a/server.py +++ b/server.py @@ -610,6 +610,15 @@ def page_user_add(): return redirect(url_for('page_user_list')) +@app.route('/smedcs', methods=['GET']) +def page_smedcs(): + """Pagina che visualizza i credits del sito""" + if 'username' not in session: + return redirect(url_for('page_login')) + if request.method == 'GET': + return render_template("smedcs.htm", type="main", user=session["username"]) + + if __name__ == "__main__": # Se non esiste il database, crealo e inizializzalo! if not os.path.isfile("data.db"): diff --git a/templates/base.htm b/templates/base.htm index 60a2604..093b251 100644 --- a/templates/base.htm +++ b/templates/base.htm @@ -10,6 +10,12 @@ {% include 'nav.htm' %}
{% block content %}{% endblock %} +

+
+
+ joke +
+
diff --git a/templates/login.htm b/templates/login.htm index 83eea6b..79fdf97 100644 --- a/templates/login.htm +++ b/templates/login.htm @@ -9,7 +9,9 @@ +
+
{% endblock %} \ No newline at end of file diff --git a/templates/smedcs.htm b/templates/smedcs.htm new file mode 100644 index 0000000..6c3e1b8 --- /dev/null +++ b/templates/smedcs.htm @@ -0,0 +1,13 @@ +{% extends "base.htm" %} +{% block title %}Credits{% endblock %} +{% block content %} +

+ Secondo me è colpa dello stagista... +

+
+
Informazioni sul sito
+ Questo sito è stato scritto da Stefano Pigozzi e da Balugani Lorenzo durante lo stage di 4° e di 5° nel 2017
+ Questo sito utilizza python, flask, sqlalchemy e jinja2. +
+
Banner
+{% endblock %} \ No newline at end of file