web app added
diff --git a/web_app/templates/base.html b/web_app/templates/base.html
new file mode 100644
index 0000000..2067d55
--- /dev/null
+++ b/web_app/templates/base.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+ <head>
+ {% block head %}
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
+ {% endblock %}
+ </head>
+ <body>
+ {% block body %}
+ {% endblock %}
+ </body>
+</html>
\ No newline at end of file
diff --git a/web_app/templates/index.html b/web_app/templates/index.html
new file mode 100644
index 0000000..ba32405
--- /dev/null
+++ b/web_app/templates/index.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+<html>
+<head>
+ {% block head %}
+ {{ super() }}
+ <title>Test report</title>
+ {% endblock %}
+</head>
+<body>
+ <h1>Tests</h1>
+ {% block body %}
+ <div>
+ <ol>
+ {% for test in tests %}
+ <li>
+ <h2>
+ <a href="{{ test.url }} ">{{ test.name }}</a>
+ </h2>
+ </li>
+ {% endfor %}
+ </ol>
+ </div>
+ {% endblock %}
+</body>
+</html>
\ No newline at end of file
diff --git a/web_app/templates/table.html b/web_app/templates/table.html
new file mode 100644
index 0000000..0dba28c
--- /dev/null
+++ b/web_app/templates/table.html
@@ -0,0 +1,31 @@
+{% extends "base.html" %}
+<html>
+<head>
+ {% block head %}
+ {{ super() }}
+ <title>Table of results</title>
+ {% endblock %}
+</head>
+<body>
+ {% block body %}
+ <div class="table-responsive">
+ <table class="table">
+ {% for header in headers %}
+ <th>
+ <h2>{{ header }}</h2>
+ </th>
+ {% endfor %}
+ {% for row in table %}
+ <tr>
+ {% for data in row %}
+ <td>
+ {{ data }}
+ </td>
+ {% endfor %}
+ </tr>
+ {% endfor %}
+ </table>
+ </div>
+ {% endblock %}
+</body>
+</html>
\ No newline at end of file