From 0bb1efcb3f237c7a056c22b3b0964f45d25e5b88 Mon Sep 17 00:00:00 2001 From: Lei Yan Date: Tue, 4 Nov 2014 23:18:07 +0000 Subject: Committer: Lei Yan On branch master --- wqflask/wqflask/templates/environments.html | 61 +++++++++++++++++++++++++++++ wqflask/wqflask/views.py | 4 ++ 2 files changed, 65 insertions(+) create mode 100755 wqflask/wqflask/templates/environments.html (limited to 'wqflask') diff --git a/wqflask/wqflask/templates/environments.html b/wqflask/wqflask/templates/environments.html new file mode 100755 index 00000000..4d551775 --- /dev/null +++ b/wqflask/wqflask/templates/environments.html @@ -0,0 +1,61 @@ +{% extends "base.html" %} + +{% block title %}Environments{% endblock %} + +{% block content %} +
+

System Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Operating System
Ubuntu12.04.5 LTS 64-bit
Database
MySQL5.5.40
Python
Python2.7.3
Flask0.9
Jinja22.6
numpy1.7.0
scipy0.11.0
JavaScript / CSS
jQuery1.10.2
Bootstrap2.3.1
DataTables1.9.4
CKEditor4.4.5
+
+{% endblock %} diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index d9a28141..55066f77 100755 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -149,6 +149,10 @@ def whats_new_page(): def testhtmleditor_page(): return render_template("testhtmleditor.html") +@app.route("/environments") +def environments(): + return render_template("environments.html") + @app.route("/reference") def reference_page(): return render_template("reference.html") -- cgit v1.2.3