18 lines
277 B
Django/Jinja
18 lines
277 B
Django/Jinja
<div class="trialProgress">
|
|
<h3>Trial Progress</h3>
|
|
{{ table }}
|
|
</div>
|
|
<style>
|
|
.trialProgress {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--jp-ui-font-color1);
|
|
}
|
|
.trialProgress h3 {
|
|
font-weight: bold;
|
|
}
|
|
.trialProgress td {
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|