diff options
author | Naeem Model <me@nmode.ca> | 2024-06-09 16:01:51 +0000 |
---|---|---|
committer | Naeem Model <me@nmode.ca> | 2024-06-09 16:01:51 +0000 |
commit | 9fd931aeeba4ab7bdede1a625f64e7024c2b55aa (patch) | |
tree | b59967df497f898e9b8f7e1cd0e345ed0ff71e36 /inst/app/templates/content/data/enter-data/single-entry.html | |
parent | 887c57c423ca8318d482a9f85514b3d6f281a696 (diff) |
Update Shiny app
- Remove template/logic for single data entry
- Change 'Add estimators' to 'About estimators'; adding estimators and viewing estimates are now done in the same tab
- Swap rows and columns in estimates table (estimators as row names, datasets as column names)
- Add a separate column for the serial interval to the estimates table
- Add plots for daily and weekly data using the Plotly library
- Remove italics from the subscript in all occurences of 'R_0'
- Fix code/text formatting
Diffstat (limited to 'inst/app/templates/content/data/enter-data/single-entry.html')
-rw-r--r-- | inst/app/templates/content/data/enter-data/single-entry.html | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/inst/app/templates/content/data/enter-data/single-entry.html b/inst/app/templates/content/data/enter-data/single-entry.html deleted file mode 100644 index 9f249d9..0000000 --- a/inst/app/templates/content/data/enter-data/single-entry.html +++ /dev/null @@ -1,39 +0,0 @@ -<h4>Single entry</h4> -<!-- Dataset name. --> -<div class="my-3"> - <label class="form-label" for="data_name">Dataset name</label> - <input name="data_name" class="form-control" type="text"> - <small id="data_name_warn" class="form-text text-primary shiny-text-output"></small> -</div> -<!-- Case counts. --> -<div class="mb-3"> - <label class="form-label" for="data_counts"> - Case counts - <sup data-bs-toggle="tooltip" data-bs-placement="right" - data-bs-title="Enter as a comma-separated list of non-negative integers (example: 0,1,1,2,3,5,8,13)."> - [?] - </sup> - </label> - <input name="data_counts" class="form-control" type="text"> - <small id="data_counts_warn" class="form-text text-primary shiny-text-output"></small> -</div> -<!-- Time units. --> -<div class="mb-3"> - <label class="form-label" for="data_units">Time units</label> - <div class="shiny-input-radiogroup" id="data_units"> - <div class="form-check form-check-inline"> - <label class="form-check-label"> - <input type="radio" class="form-check-input me-2" name="data_units" value="Days">Days - </label> - </div> - <div class="form-check form-check-inline"> - <label class="form-check-label"> - <input type="radio" class="form-check-input me-2" name="data_units" value="Weeks" checked>Weeks - </label> - </div> - </div> -</div> -<!-- Submit data. --> -<button id="data_single" type="button" class="btn btn-outline-primary btn-sm action-button"> - <span class="glyphicon glyphicon-plus"></span> Add -</button> |