diff options
author | hannajankowski <hkj@yorku.ca> | 2024-05-30 12:04:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 12:04:38 -0400 |
commit | 3aed7c6fc4f958df5f98bc0a9de550232920a593 (patch) | |
tree | 0f8d594f905b2d39c0ff4dcd4be765608d59700a /inst/app/templates/content/estimators/estimators.html | |
parent | 0e7c9514490f4eeff621b05e441385b3e7fd8394 (diff) |
Add files via upload
Diffstat (limited to 'inst/app/templates/content/estimators/estimators.html')
-rw-r--r-- | inst/app/templates/content/estimators/estimators.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/inst/app/templates/content/estimators/estimators.html b/inst/app/templates/content/estimators/estimators.html new file mode 100644 index 0000000..133241a --- /dev/null +++ b/inst/app/templates/content/estimators/estimators.html @@ -0,0 +1,13 @@ +<nav class="nav nav-tabs"> + <a class="nav-link active" data-bs-toggle="tab" href="#add-estimators">About the estimators</a> + <a class="nav-link" data-bs-toggle="tab" href="#view-estimates">Select and compute estimates</a> +</nav> + +<div class="container-fluid tab-content"> + <div id="add-estimators" class="pt-3 tab-pane fade show active"> + {{ htmlTemplate("templates/content/estimators/add-estimators.html") }} + </div> + <div id="view-estimates" class="pt-3 tab-pane fade"> + {{ htmlTemplate("templates/content/estimators/view-estimates.html") }} + </div> +</div> |