request-estimation.html
8.64 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
{% extends "base.html" %}
{% block title %}Request an estimation of your travel footprint{% endblock %}
{% block hero %}
<div class="jumbotron">
<h1>{{ content.estimate.hero.title | safe }}</h1>
{{ content.estimate.hero.description | markdown | safe }}
</div>
{% endblock %}
{#############################################################################}
{# MACROS ####################################################################}
{% macro render_field(field) %}
<dt>
{{ field.label }}
{% if not field.flags.optional %}
<span class="required-asterisk" title="This field is required.">*</span>
{% endif %}
</dt>
<dd>
{{ field(title=field.description, class_="form-control", **kwargs) | safe }}
{% if field.errors -%}
<ul class="errors text-danger has-error">
{% for error in field.errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{%- endif %}
</dd>
{% endmacro %}
{% macro render_checkbox(field) %}
{{ field(class="form-check-input") }}
{{ field.label(
class="form-check-label",
title=field.description
) }}
{% if field.errors -%}
<p class="text-danger help-block">{{ field.errors[0] | safe }}</p>
{%- endif %}
{% endmacro %}
{#############################################################################}
{# BODY ######################################################################}
{% block body %}
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<form role="form" action="{{ url_for('.estimate') }}" method="post" enctype="multipart/form-data">
{{ form.hidden_tag() }}
{# <div class="form-group">#}
{# {{ render_field(form.email) }}#}
{# <small class="form-text text-muted">We will never share your email with anyone.</small>#}
{# </div>#}
<div class="form-group row">
<div class="col-md-6">
{{ render_field(form.first_name) }}
<small class="form-text text-muted">{{ content.estimate.help.first_name | safe }}</small>
</div>
<div class="col-md-6">
{{ render_field(form.last_name) }}
<small class="form-text text-muted">{{ content.estimate.help.last_name | safe }}</small>
</div>
</div>
<div class="form-group">
{{ render_field(form.institution) }}
</div>
<div class="row">
<div class="col-7">
<div class="form-group">
{{ render_field(form.origin_addresses) }}
<small class="form-text text-muted">
{{ content.estimate.help.origin_addresses | safe }}
</small>
</div>
</div>
<div class="col-1">
<br>
<br>
OR
</div>
<div class="col-4">
<div class="form-group">
{{ render_field(form.origin_addresses_file) }}
<small class="form-text text-muted">
{{ content.estimate.help.origin_addresses_file | safe }}
</small>
</div>
</div>
</div>
<div class="row">
<div class="col-7">
<div class="form-group">
{{ render_field(form.destination_addresses) }}
<small class="form-text text-muted">
{{ content.estimate.help.destination_addresses | safe }}
</small>
</div>
</div>
<div class="col-1">
<br>
<br>
OR
</div>
<div class="col-4">
<div class="form-group">
{{ render_field(form.destination_addresses_file) }}
<small class="form-text text-muted">
{{ content.estimate.help.destination_addresses_file | safe }}
</small>
</div>
</div>
</div>
{# <div class="form-check form-group">#}
{# {{ render_checkbox(form.compute_optimal_destination) }}#}
{# </div>#}
{# <div class="form-check form-group">#}
{# {{ render_checkbox(form.use_atmosfair_rfi) }}#}
{# <small class="form-text text-muted">Disabled. Work in Progress. RFI=1.9</small>#}
{# </div>#}
<div class="form-group">
<h6>Emission Models to consider</h6>
<div class="form-check">
{% for model in models %}
<div>
{{ render_checkbox(form['use_model_'~model.slug]) }}
</div>
{% endfor %}
</div>
<small class="form-text text-muted">
We will use a mean of the selected models.
Please select at least one.
<br>
The meaning of <acronym title="Radiative Forcing Index">RFI</acronym>
is detailed
<a href="{{ url_for('.home') }}#rfi">here</a>
.
</small>
</div>
<div class="form-group">
{{ render_field(form.use_train_below_km) }}
<small class="form-text text-muted">
{{ content.estimate.help.use_train_below_km | safe }}
</small>
</div>
<div class="form-group">
{{ render_field(form.comment) }}
</div>
<hr>
<div class="form-group">
{{ render_field(form.run_name) }}
<small class="form-text text-muted">{{ content.estimate.help.run_name | safe }}</small>
</div>
<div class="form-group">
<dt>
{{ form.captcha.label }}
<span class="required-asterisk" title="This field is required.">*</span>
</dt>
<dd>
{{ captcha() }}
<br><br>
{{ form.captcha(
title=form.captcha.description,
class_="form-control",
placeholder="Please write the numbers you see in the image above."
) | safe }}
{% if form.captcha.errors -%}
<ul class="errors text-danger has-error">
{% for error in form.captcha.errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{%- endif %}
</dd>
</div>
<button type="submit" class="btn btn-primary">
Submit a Request
</button>
</form>
</div>
<div class="col-md-2"></div>
</div>
{% endblock %}
{% block js %}
<script type="text/javascript">
// Multiline placeholders for textarea shim (eg: iPad)
// https://github.com/EmilMoe/multiline-placeholder
// This breaks accessibility and form input retention,
// so we're trying to only enable it for the iDiot platforms.
$(function() {
//var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
var isDumb = navigator.platform.match(/i(Phone|Pod))/i);
if (isDumb) {
var style = $('<style>textarea[data-placeholder].active { color: #666; }</style>')
$('html > head').append(style);
$('textarea[placeholder]').each(function (index) {
var text = $(this).attr('placeholder');
var match = /\r|\n/.exec(text);
if (!match) return;
$(this).attr('placeholder', '');
$(this).attr('data-placeholder', text);
$(this).addClass('active');
$(this).val(text);
});
$('textarea[data-placeholder]').on('focus', function () {
if ($(this).attr('data-placeholder') === $(this).val()) {
$(this).attr('data-placeholder', $(this).val());
$(this).val('');
$(this).removeClass('active');
}
});
$('textarea[data-placeholder]').on('blur', function () {
if ($(this).val() === '') {
var text = $(this).attr('data-placeholder');
$(this).val(text);
$(this).addClass('active');
}
});
}
});
</script>
{% endblock %}