summaryrefslogtreecommitdiff
path: root/jimbrella/templates
diff options
context:
space:
mode:
Diffstat (limited to 'jimbrella/templates')
-rw-r--r--jimbrella/templates/index.html33
1 files changed, 18 insertions, 15 deletions
diff --git a/jimbrella/templates/index.html b/jimbrella/templates/index.html
index 0304499..00036fc 100644
--- a/jimbrella/templates/index.html
+++ b/jimbrella/templates/index.html
@@ -2,22 +2,25 @@
<html>
<head>
<title>JI Umbrella</title>
+ <link rel="stylesheet" href="static/jimbrella.css" />
</head>
<body>
- <h1>JI Umbrella Overview</h1>
- <table>
- <tr>
- <td>Total</td>
- <td>Available</td>
- <td>Lent</td>
- <td>Overdue</td>
- </tr>
- <tr>
- <td>{{ total }}</td>
- <td>{{ available }}</td>
- <td>{{ lent }}</td>
- <td>{{ overdue }}</td>
- </tr>
- </table>
+ <div id="container">
+ <h1>JI Umbrella Overview</h1>
+ <table class="overview">
+ <tr>
+ <td>Total</td>
+ <td>Available</td>
+ <td>Lent</td>
+ <td>Overdue</td>
+ </tr>
+ <tr>
+ <td>{{ total }}</td>
+ <td>{{ available }}</td>
+ <td>{{ lent }}</td>
+ <td>{{ overdue }}</td>
+ </tr>
+ </table>
+ </div>
</body>
</html>