summaryrefslogtreecommitdiff
path: root/jimbrella/templates/admin/index.html
blob: 1330e4b26d201753aa9f5fffd96c8fc4acd7ed8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
    <head>
        <title>JI Umbrella</title>
        <link rel="stylesheet" href="/static/jimbrella.css" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
    </head>
    <body>
        <h1>JI Umbrella Overview</h1>
        <div id="container">
            {% include "admin/tabs.html" %}
            <!--Takes up full width of container-->
            <div class="banner-container">
                {% if overdue %}
                    <div class="banner overdue">
                        <h2 class="banner-heading">Overdue</h2>
                        <span class="proportion">
                            <strong class="big">{{ overdue|length }}</strong> / {{ umbrellas|length }}
                        </span>
                        <table class="data">
                            <tr>
                                <td>#</td>
                                <td>Tenant</td>
                                <td>Phone</td>
                                <td>Lent</td>
                            </tr>
                        {% for umb in overdue %}
                            <tr>
                                <td>{{ umb.serial }}</td>
                                <td>{{ umb.tenant_name }}</td>
                                <td>{{ umb.tenant_phone }}</td>
                                <td>{{ umb.lent_time_ago_str }} ago</td>
                            </tr>
                        {% endfor %}
                        </table>
                    </div>
                {% endif %}
            </div>
            <!--Tiles displaying minimal data-->
            <div class="tile-container">
                <div class="tile lent">
                    <h2 class="tile-heading">Lent</h2>
                    <span class="proportion">
                        <strong class="big">{{ lent|length }}</strong> / {{ umbrellas|length }}
                    </span>
                </div>
                <div class="tile available">
                    <h2 class="tile-heading">Available</h2>
                    <span class="proportion">
                        <strong class="big">{{ available|length }}</strong> / {{ umbrellas|length }}
                    </span>
                </div>
            </div>
        </div>
    </body>
</html>