Skip to content

Commit f0dac3e

Browse files
committed
Minor tweaks to UI for listing of extraction events.
1 parent e6bd578 commit f0dac3e

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

app/views/extractions/extractionsList.scala.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525

2626
</tr>
2727
<tr class="collapse" id="[email protected]('.','-')">
28-
<td colspan="5">
28+
<td colspan="5" class="extractor-log">
2929
<table class="table table-condensed table-striped">
3030
<thead>
3131
<th></th>
32-
<th>Last Update</th>
32+
<th>Submission</th>
3333
<th>Status</th>
3434
</thead>
3535
<tbody>
@@ -39,8 +39,8 @@
3939
<td width="60%" class="accordion-status" style="vertical-align:middle;">@eventList.head.status</td>
4040
</tr>
4141
<tr class="collapse" id="extraction-job-@job_id">
42-
<td colspan="3" style="padding: 0 50px;">
43-
<table class="table table-hover">
42+
<td colspan="3" class="extractor-log">
43+
<table class="table table-condensed">
4444
<thead>
4545
<th>Timestamp</th>
4646
<th>Status Message</th>
@@ -52,9 +52,7 @@
5252
<td width="60%">
5353
@evt.status.replace("StatusMessage.start", "START").replace("StatusMessage.processing", "PROCESS").replace("StatusMessage.error", "ERROR")
5454
@if(evt.status == "SUBMITTED") {
55-
<a class="btn btn-link btn-xs" id='@(evt.id)' onclick="cancelSubmission('@(evt.file_id)', '@(evt.id)', '@(evt.extractor_id)', '@(extractType)')">
56-
Cancel
57-
</a>
55+
<a class="btn btn-link" id='@(evt.id)' onclick="cancelSubmission('@(evt.file_id)', '@(evt.id)', '@(evt.extractor_id)', '@(extractType)')">(Cancel submission)</a>
5856
}
5957
</td>
6058
</tr>
@@ -126,4 +124,8 @@
126124
.job-list-accordion-status {
127125
padding: 12px 8px !important;
128126
}
127+
.extractor-log {
128+
padding: 10px 0px 10px 50px !important;
129+
border-top: none !important;
130+
}
129131
</style>

0 commit comments

Comments
 (0)