Skip to content

Commit

Permalink
Uploader: Progress commit, adding view, resume, delete buttons to sub…
Browse files Browse the repository at this point in the history
…missions in progress
  • Loading branch information
jorvis committed Sep 29, 2024
1 parent 39fd482 commit ecf1a8c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions www/upload_dataset.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ <h1>Submissions in progress</h1>
<th>Status</th>
<th>Dataset type</th>
<th>Title</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="submissions-in-progress-table-tbody"></tbody>
Expand All @@ -93,6 +94,20 @@ <h1>Submissions in progress</h1>
<td class="submission-status"></td>
<td class="submission-dataset-type"></td>
<td class="submission-title"></td>
<td>
<button class="button is-small is-primary submission-resume">
<span class="icon">
<i class="mdi mdi-play"></i>
</span>
<span>View / resume</span>
</button>
<button class="button is-small is-danger submission-delete">
<span class="icon">
<i class="mdi mdi-trash-can"></i>
</span>
<span>Delete</span>
</button>
</td>
</tr>
</template>
<hr />
Expand Down

0 comments on commit ecf1a8c

Please sign in to comment.