Spaces:
Running
Running
Added CoE Meetup GitHub page to `Community`
Browse files
app/app.R
CHANGED
@@ -133,9 +133,9 @@ ui <- shinydashboardPlus::dashboardPage(
|
|
133 |
sidebarMenu(
|
134 |
menuItem(text = "Start Here", tabName = "start", icon = icon("play")),
|
135 |
menuItem(text = "Payout Summary", tabName = "payout", icon = icon("credit-card")),
|
136 |
-
menuItem(text = "Model Performance", tabName = "performance", icon = icon("line-chart")),
|
137 |
menuItem(text = "Raw Data", tabName = "raw_data", icon = icon("download")),
|
138 |
-
menuItem(text = "
|
|
|
139 |
menuItem(text = "About", tabName = "about", icon = icon("question-circle"))
|
140 |
),
|
141 |
minified = TRUE,
|
@@ -442,7 +442,12 @@ ui <- shinydashboardPlus::dashboardPage(
|
|
442 |
# ========================================================================
|
443 |
|
444 |
tabItem(tabName = "community",
|
445 |
-
|
|
|
|
|
|
|
|
|
|
|
446 |
),
|
447 |
|
448 |
|
@@ -471,6 +476,7 @@ ui <- shinydashboardPlus::dashboardPage(
|
|
471 |
- #### **0.1.4** — Improved and sped up `Payout Summary`
|
472 |
- #### **0.1.5** — Replaced `corrV1` with `corrV2`
|
473 |
- #### **0.1.6** — Added `apcwnm` and `mcwnm`
|
|
|
474 |
"),
|
475 |
|
476 |
br(),
|
@@ -489,7 +495,7 @@ ui <- shinydashboardPlus::dashboardPage(
|
|
489 |
|
490 |
footer = shinydashboardPlus::dashboardFooter(
|
491 |
left = "Powered by ❤️, ☕, Shiny, and 🤗 Spaces",
|
492 |
-
right = paste0("Version 0.1.
|
493 |
|
494 |
)
|
495 |
|
|
|
133 |
sidebarMenu(
|
134 |
menuItem(text = "Start Here", tabName = "start", icon = icon("play")),
|
135 |
menuItem(text = "Payout Summary", tabName = "payout", icon = icon("credit-card")),
|
|
|
136 |
menuItem(text = "Raw Data", tabName = "raw_data", icon = icon("download")),
|
137 |
+
# menuItem(text = "Model Performance", tabName = "performance", icon = icon("line-chart")),
|
138 |
+
menuItem(text = "Community Events", tabName = "community", icon = icon("users")),
|
139 |
menuItem(text = "About", tabName = "about", icon = icon("question-circle"))
|
140 |
),
|
141 |
minified = TRUE,
|
|
|
442 |
# ========================================================================
|
443 |
|
444 |
tabItem(tabName = "community",
|
445 |
+
fluidRow(
|
446 |
+
column(10,
|
447 |
+
htmltools::includeMarkdown('https://raw.githubusercontent.com/councilofelders/meetups/master/README.md')
|
448 |
+
)
|
449 |
+
)
|
450 |
+
# markdown("![image](https://media.giphy.com/media/cftSzNoCTfSyAWctcl/giphy.gif)")
|
451 |
),
|
452 |
|
453 |
|
|
|
476 |
- #### **0.1.4** — Improved and sped up `Payout Summary`
|
477 |
- #### **0.1.5** — Replaced `corrV1` with `corrV2`
|
478 |
- #### **0.1.6** — Added `apcwnm` and `mcwnm`
|
479 |
+
- #### **0.1.7** — Added CoE Meetup GitHub page to `Community`
|
480 |
"),
|
481 |
|
482 |
br(),
|
|
|
495 |
|
496 |
footer = shinydashboardPlus::dashboardFooter(
|
497 |
left = "Powered by ❤️, ☕, Shiny, and 🤗 Spaces",
|
498 |
+
right = paste0("Version 0.1.7"))
|
499 |
|
500 |
)
|
501 |
|