aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/base/notifier/end_booking.html
blob: 22fbd5834ce56a6e294cb2134eff6d4ac7d41577 (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
<html>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">

    <style>
        h2{
            font-family: 'Source Sans Pro';
        }
        p{
            font-family: Montserrat;
        }
        li{
            font-family: Montserrat;
        }
        a{
            color: #f8f9fa;
            text-decoration: none;
        }
        button{
            background-color:#a3c1db;
            color: #343a40;
            border: 0px;
            border-radius: 4mm;
            height: 25px;
            width: 310px;
            text-align: center;
            margin: 15px;
            text-decoration: none;
            font-family: Montserrat;
            font-size: 16;
        }
        button:focus{
            border: 0px;
        }
        .textFormatting{
            text-align: center;
            color:#343a40;
            margin: auto;

        }
        .content{
            background-color: #f8f9fa;
            position: center;
        }
        table{
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #343a40;
            border-collapse: collapse;
        }
        tr{
            border-bottom: 1px solid #343a40;
        }
        td{
            color:#343a40;
            padding: 3px;
            font-family: Montserrat
        }
        .row1{
            background-color: #7598b6;
        }
        .row2{
            background-color: #d7e2f0;
        }
        .row3{
            background-color: #d2e5f3;
        }
    </style>

    <body>
        <div id="message_content_wrapper" class="textFormatting content">
            {% if owner %}
            <h2>Your Booking Has Expired.</h2>
            <p>Your booking has ended and the machines have been cleaned up.</p>
            <p>Thank you for working on {{booking.lab.project}}, and feel free to book more machines if you need them.</p>
            {% else %}
            <h2>A Booking That You Collaborated on Has Expired.</h2>
            <p>The booking owned by {{booking.owner.username}} that you worked on has ended.</p>
            <p>Thank you for contributing to {{booking.lab.project}}.</p>
            {% endif %}
            <br>
            <table>
                <tr class="row1">
                    <td style="text-align: center; font-size: larger;" colspan="2">Booking Information:</td>
                </tr>
                <tr class="row2">
                    <td>Owner:</td>
                    <td>{{booking.owner.username}}</td>
                </tr>
                <tr class="row3">
                    <td>id:</td>
                    <td>{{booking.id}}</td>
                </tr>
                <tr class="row2">
                    <td>lab:</td>
                    <td>{{booking.resource.template.lab.lab_user.username}}</td>
                </tr>
                <tr class="row3">
                    <td>resource:</td>
                    <td>{{booking.resource.template.name}}</td>
                </tr>
                <tr class="row2">
                    <td>start:</td>
                    <td>{{booking.start}}</td>
                </tr>
                <tr class="row3">
                    <td>end:</td>
                    <td>{{booking.end}}</td>
                </tr>
                <tr class="row2">
                    <td>purpose:</td>
                    <td>{{booking.purpose}}</td>
                </tr>
                <tr class="row3">
                    <td>collaborator{% booking.collaborators.all.count|pluralize:"s" %}:</td>
                    <td></td>
                </tr>
                {% for user in booking.collaborators.all %}
                <tr class="{% cycle 'row2' 'row3' %}">
                    <td></td>
                    <td>{{user.username}}</td>
                </tr>
                {% empty %}
                <tr class="row2">
                    <td></td>
                    <td>No collaborators</td>
                </tr>
                {% endfor %}
            </table>
            <button type="button" onclick="window.location.href='/booking/detail/{{booking.id}}'">You can find more detailed information here</button>
        </div>
    </body>
</html>