1
0
Fork 0
mirror of https://github.com/endofunky/sidetiq.git synced 2022-11-09 13:53:30 -05:00

Add unlock action to web extension.

This commit is contained in:
Tobias Svensson 2013-09-16 17:34:40 +01:00
parent 9de48c0eb9
commit 4af7ccaf5a
3 changed files with 30 additions and 2 deletions

View file

@ -16,8 +16,9 @@
<thead>
<th style="width: 20%">Key</th>
<th style="width: 30%">Owner Node</th>
<th style="width: 20%">Timetamp</th>
<th style="width: 10%">Timetamp</th>
<th style="width: 10%">TTL</th>
<th style="width: 10%">Actions</th>
</thead>
<% @locks.each do |meta| %>
@ -26,10 +27,15 @@
<tr class="<%= 'error' if meta.stale? %>">
<td><%= meta.key %></td>
<td><%= meta.owner %></td>
<td><%= meta.timestamp %></td>
<td><%= meta.timestamp.to_i %></td>
<td>
<%= pttl / 1000 %> s
</td>
<td>
<form action="<%= "#{root_path}sidetiq/#{meta.key}/unlock" %>" method="post">
<input class="btn btn-danger btn-small" type="submit" name="trigger" value="Unlock" data-confirm="Are you sure you want remove this lock?" />
</form>
</td>
</tr>
<% end %>
</table>