You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.7KB

  1. ui <- shinyUI(fluidPage(
  2. navbarPage("Celine 2.0", collapsible = T, id = "nav",
  3. tabPanel("Accueil",
  4. radioButtons("CESP", "Procédure", choices = c("Normale", "CESP"), selected = "Normale", inline = T),
  5. uiOutput("dates"),
  6. includeMarkdown("accueil.md")
  7. ),
  8. tabPanel("Listing",
  9. DT::dataTableOutput("tableListing")),
  10. tabPanel("Par étudiant",
  11. div(style="display:inline-block",numericInput("Etudiant", "Étudiant", 1, min = 1, max = max_rank)),
  12. div(style="display:inline-block",checkboxInput("Rang", "Afficher le rang dans un choix", value = T)),
  13. plotlyOutput("plotEtudiant"),
  14. DT::dataTableOutput("tableEtudiant")
  15. ),
  16. tabPanel("Par discipline et subdivision",
  17. div(style="display:inline-block",selectInput("Ville", "Ville", choices = villes)),
  18. div(style="display:inline-block",selectInput("Spe", "Spé", choices = spes)),
  19. plotlyOutput("plotVilleSpe"),
  20. DT::dataTableOutput("tableVilleSpe")
  21. )
  22. )
  23. )
  24. )