R/uiLogsJobs.R

Defines functions uiLogsJobs

uiLogsJobs <- function() {
  
  fluidRow(
      
    shinydashboard::tabBox(title = "", width = 12, id = "logs_panel",
                           tabPanel("Logs", verbatimTextOutput("logs_view")
                                    ), 
                           tabPanel("Job Queue", 
                                    h3("Job Queue"),
                                    tableOutput("job_queue_table"),
                                    h3("Running Jobs"),
                                    tableOutput("job_run_table"),
                                    h3("Done"),
                                    tableOutput("job_done_table")
                           )
    )
  )
}
andrejadd/Shiny_GWSDAT documentation built on March 7, 2024, 8:31 a.m.