Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit b62573fa authored by usov_i's avatar usov_i
Browse files

Add 'param study' tab based on 'ccl integrate' tab

parent f7f016cf
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ from bokeh.models import Tabs, TextAreaInput ...@@ -9,6 +9,7 @@ from bokeh.models import Tabs, TextAreaInput
import panel_ccl_integrate import panel_ccl_integrate
import panel_hdf_anatric import panel_hdf_anatric
import panel_hdf_viewer import panel_hdf_viewer
import panel_param_study
doc = curdoc() doc = curdoc()
...@@ -27,10 +28,11 @@ bokeh_log_textareainput = TextAreaInput(title="server output:", height=150) ...@@ -27,10 +28,11 @@ bokeh_log_textareainput = TextAreaInput(title="server output:", height=150)
tab_hdf_viewer = panel_hdf_viewer.create() tab_hdf_viewer = panel_hdf_viewer.create()
tab_hdf_anatric = panel_hdf_anatric.create() tab_hdf_anatric = panel_hdf_anatric.create()
tab_ccl_integrate = panel_ccl_integrate.create() tab_ccl_integrate = panel_ccl_integrate.create()
tab_param_study = panel_param_study.create()
doc.add_root( doc.add_root(
column( column(
Tabs(tabs=[tab_hdf_viewer, tab_hdf_anatric, tab_ccl_integrate]), Tabs(tabs=[tab_hdf_viewer, tab_hdf_anatric, tab_ccl_integrate, tab_param_study]),
row(stdout_textareainput, bokeh_log_textareainput, sizing_mode="scale_both"), row(stdout_textareainput, bokeh_log_textareainput, sizing_mode="scale_both"),
) )
) )
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment