summaryrefslogtreecommitdiff
path: root/jimbrella/templates/admin/umbrellas.html
blob: 3a1455ed00965e9241b011bf349eb20565554de8 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{% macro status_dropdown(umb) -%}
{# A dropdown for umbrella status #}
<select name="status">
    {% for status in ["available", "lent", "overdue"] %}
    <option value="{{ status }}"
    {% if umb.status == status %}
        selected
    {% endif %}>
        {{ status }}
    </option>
    {% endfor %}
</select>
{%- endmacro %}

<!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>All Umbrellas</h1>
        <div id="container">
            {% include "admin/tabs.html" %}
            {% if mobile %}
            <div class="data-table-container">
                <table class="data">
                    {% for umb in umbrellas %}
                    {% if umb.serial == edit %}
                    <form method="post" action="/admin/umbrellas/edit">
                        <input name="serial" type="number" value="{{ umb.serial }}" hidden />
                        <tr id="{{ umb.serial }}" class="{{ umb.status }}">
                            <th rowspan=5>
                                {{ umb.serial }} <br />
                                {{ status_dropdown(umb) }} <br />
                                <input type="submit" value="Submit" />
                            </th>
                            <td><input name="tenant_name" value="{{ umb.tenant_name }}" /></td>
                        </tr>
                        <tr class="{{ umb.status }}">
                            <td><input name="tenant_id" type="number" value="{{ umb.tenant_id }}" /></td>
                        </tr>
                        <tr class="{{ umb.status }}">
                            <td><input name="tenant_phone" type="tel" value="{{ umb.tenant_phone }}" /></td>
                        </tr>
                        <tr class="{{ umb.status }}">
                            <td><input name="lent_at" type="datetime-local" value="{{ umb.lent_at_str }}" /></td>
                        </tr>
                        <tr class="{{ umb.status }}"><td>
                            {{ umb.lent_time_ago_str }}
                            {% if umb.status in ["lent", "overdue"] %} ago {% endif %}
                        </td></tr>
                    </form>
                    {% else %}
                    {# not edit mode #}
                    {% if umb.status in ["lent", "overdue"] %}
                    <tr id="{{ umb.serial }}" class="{{ umb.status }}">
                            <th rowspan=5>
                                {{ umb.serial }} <br />
                                {{ umb.status }} <br />
                                <a href="/admin/umbrellas?edit={{ umb.serial }}">Edit</a>
                            </th>
                            <td>{{ umb.tenant_name }}</td>
                        </tr>
                        <tr class="{{ umb.status }}"><td>{{ umb.tenant_id }}</td></tr>
                        <tr class="{{ umb.status }}"><td>{{ umb.tenant_phone }}</td></tr>
                        <tr class="{{ umb.status }}"><td>{{ umb.lent_at_str }}</td></tr>
                        <tr class="{{ umb.status }}"><td>
                            {{ umb.lent_time_ago_str }}
                            {% if umb.status in ["lent", "overdue"] %} ago {% endif %}
                        </td></tr>
                    {% else %}
                    <tr id="{{ umb.serial }}" class="{{ umb.status }}">
                            <th colspan=2>
                                {{ umb.serial }} <br />
                                {{ umb.status }} <br />
                                <a href="/admin/umbrellas?edit={{ umb.serial }}#{{ umb.serial }}">Edit</a>
                            </th>
                        </tr>
                    {% endif %}
                    {% endif %}
                    {% endfor %}
                </table>
            </div>
            {% else %}
            {# not mobile #}
            <div class="data-table-container">
                <table class="data">
                    <thead>
                        <tr>
                            <th>#</th>
                            <th>Status</th>
                            <th>Tenant</th>
                            <th>ID</th>
                            <th>Phone</th>
                            <th colspan=2>Lent at</th>
                        </tr>
                    </thead>
                    <tbody>
                        {% for umb in umbrellas %}
                        <tr id="{{ umb.serial }}" class="{{ umb.status }}">
                        {% if umb.serial == edit %}
                        <form method="post" action="/admin/umbrellas/edit">
                            <input name="serial" type="number" value="{{ umb.serial }}" hidden/>
                            <td>{{ umb.serial }}</td>
                            <td>{{ status_dropdown(umb) }}</td>
                            <td><input name="tenant_name" value="{{ umb.tenant_name }}" class="db-edit" /></td>
                            <td><input name="tenant_id" type="number" value="{{ umb.tenant_id }}" class="db-edit" /></td>
                            <td><input name="tenant_phone" type="tel" value="{{ umb.tenant_phone }}" class="db-edit" /></td>
                            <td><input name="lent_at" type="datetime-local" value="{{ umb.lent_at_str }}"/></td>
                            <td>{{ umb.lent_time_ago_str }}
                                {% if umb.status in ["lent", "overdue"] %} ago {% endif %}
                            </td>
                            <td>
                                <input type="submit" value="Submit" />
                            </td>
                        </form>
                        {% else %}
                            <td>{{ umb.serial }}</td>
                            <td>{{ umb.status }}</td>
                            <td>{{ umb.tenant_name }}</td>
                            <td>{{ umb.tenant_id }}</td>
                            <td>{{ umb.tenant_phone }}</td>
                            <td>{{ umb.lent_at_str }}</td>
                            <td>{{ umb.lent_time_ago_str }}
                                {% if umb.status in ["lent", "overdue"] %} ago {% endif %}
                            </td>
                            <td>
                                <a href="/admin/umbrellas?edit={{ umb.serial }}#{{ umb.serial }}">Edit</a>
                            </td>
                        {% endif %}
                        </tr>
                        {% endfor %}
                    </tbody>
                </table>
            </div>
            {% endif %}
        </div>
    </body>
</html>