summaryrefslogtreecommitdiff
path: root/jimbrella/templates/admin/index.html
blob: ddbe4e5645041460d8b759e2a0c682937bf56d97 (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">
            <header>
                <table class="tabs">
                    <tr>
                        <td><a href="/admin">Overview</a></td>
                        <td><a href="/admin/umbrellas">All</a></td>
                    </tr>
                </table>
            </header>
            <!--Takes up full width of container-->
            <div class="banner-container">
                {% if overdue %}
                    <div class="banner overdue">
                        <h2 class="banner-heading">Overdue</h2>
                        <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>
                    <strong class="big">{{ lent|length }}</strong> / {{ umbrellas|length }}
                </div>
                <div class="tile available">
                    <h2 class="tile-heading">Available</h2>
                    <strong class="big">{{ available|length }}</strong> / {{ umbrellas|length }}
                </div>
            </div>
        </div>
    </body>
</html>