]> nmode's Git Repositories - Rnaught/blob - inst/web/templates/content/estimation/estimates/add-estimators/wp.html
Update about.html
[Rnaught] / inst / web / templates / content / estimation / estimates / add-estimators / wp.html
1 <!-- Radio buttons to specify whether the serial interval is known. -->
2 <label class="form-label" for="wp_mu_known">Is the serial interval known?</label>
3 <div class="shiny-input-radiogroup" id="wp_mu_known">
4 <div class="form-check form-check-inline">
5 <label class="form-check-label">
6 <input type="radio" class="form-check-input me-2" name="wp_mu_known" value="Yes" checked>Yes
7 </label>
8 </div>
9 <div class="form-check form-check-inline">
10 <label class="form-check-label">
11 <input type="radio" class="form-check-input me-2" name="wp_mu_known" value="No">No
12 </label>
13 </div>
14 </div>
15 <!-- Show the input field for the serial interval if it is known. -->
16 <div data-display-if="input.wp_mu_known == 'Yes'" class="mt-2 mt-md-0">
17 {{ htmlTemplate("templates/content/estimation/estimates/add-estimators/mu.html", id = "wp") }}
18 </div>
19 <!-- Show the input fields for the grid search parameters if the serial interval is unknown. -->
20 <div data-display-if="input.wp_mu_known == 'No'" class="row">
21 <!-- Grid length. -->
22 <div class="col-md mt-2 mt-md-0">
23 <label class="form-label" for="grid_length">Grid length</label>
24 <input name="grid_length" class="form-control" type="text" placeholder="Default: 100">
25 <small id="grid_length_warn" class="form-text text-primary shiny-text-output"></small>
26 </div>
27 <!-- Maximum shape. -->
28 <div class="col-md mt-2 mt-md-0">
29 <label class="form-label" for="max_shape">Maximum shape</label>
30 <input name="max_shape" class="form-control" type="text" placeholder="Default: 10">
31 <small id="max_shape_warn" class="form-text text-primary shiny-text-output"></small>
32 </div>
33 <!-- Grid length. -->
34 <div class="col-md mt-2 mt-md-0">
35 <label class="form-label" for="max_scale">Maximum scale</label>
36 <input name="max_scale" class="form-control" type="text" placeholder="Default: 10">
37 <small id="max_scale_warn" class="form-text text-primary shiny-text-output"></small>
38 </div>
39 </div>