Skip to content

Commit

Permalink
Merge pull request #8 from Ensembl/feature/datacheck_job_table
Browse files Browse the repository at this point in the history
Hide some job table columns by default.
  • Loading branch information
james-monkeyshines authored Jun 15, 2021
2 parents b947b93 + f2b8b5f commit a19d98d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/ensembl/production/datacheck/templates/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<div class="col-12">
<table id="table"
class="table table-striped thead-dark table-bordered "
id="table"
data-toggle="table"
data-row-style="rowStyle"
data-search="true"
Expand All @@ -28,16 +27,16 @@
data-detail-view-icon="true"
data-detail-formatter="detailFormatter"
data-buttons-class="btn h-buttons"
data-query-params="queryParams"
data-show-columns="true">
data-query-params="queryParams">
<thead>
<tr style="cursor: pointer">
<!--<th data-formatter="expandIcon"></th>-->
<th data-field="id" data-sortable="true" data-formatter="detailPage">ID</th>
<!--<th data-field="input.db_type" data-sortable="true">DB Type</th>-->
<th data-field="input.dbname" data-sortable="true" data-formatter="FormatArrayName" >DB Name</th>
<th data-field="input.datacheck_types" data-sortable="true" data-formatter="FormatArrayName" >Datacheck types</th>
<th data-field="input.datacheck_groups" data-sortable="true" data-formatter="FormatArrayName" >Datacheck groups</th>
<th data-field="input.dbname" data-sortable="true" data-formatter="FormatArrayName" >Database</th>
<th data-field="input.datacheck_names" data-sortable="true" data-formatter="FormatArrayName" data-visible="false" >Datacheck Names</th>
<th data-field="input.datacheck_types" data-sortable="true" data-formatter="FormatArrayName" data-visible="false" >Datacheck Types</th>
<th data-field="input.datacheck_groups" data-sortable="true" data-formatter="FormatArrayName" data-visible="false" >Datacheck Groups</th>
<th data-field="status" data-sortable="true" data-formatter="statusFormat">Status</th>
<th data-field="input.tag" data-sortable="true" >Tag</th>
<th data-field="input.timestamp" data-sortable="true" >Start Time</th>
Expand Down

0 comments on commit a19d98d

Please sign in to comment.