beanstalkd_view 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@
|
|
11
11
|
<tbody>
|
12
12
|
<% @connections.each do |connection| %>
|
13
13
|
<tr>
|
14
|
-
<td><%= connection.address %></
|
14
|
+
<td><%= connection.address %></td>
|
15
15
|
</tr>
|
16
16
|
<% end %>
|
17
17
|
</tbody>
|
@@ -285,7 +285,7 @@
|
|
285
285
|
<input id="form_job_priority" type="text" class="span3" placeholder="Priority, e.g. 65536" name="priority">
|
286
286
|
<input id="form_job_delay" type="text" class="span3" placeholder="Delay, e.g. 0" name="delay">
|
287
287
|
<input id="form_job_ttr" type="text" class="span3" placeholder="TTR, e.g. 120" name="ttr">
|
288
|
-
<label class="control-label" for="
|
288
|
+
<label class="control-label" for="form_job_body">Job Body JSON Hash, e.g. {} or {"id": 1, "name": "Bob"}</label>
|
289
289
|
<textarea id="form_job_body" class="input-xlarge" name="body" rows="3"></textarea>
|
290
290
|
<br/>
|
291
291
|
<a id="add_job_btn" href="#" class="btn">Add Job</a>
|
@@ -96,11 +96,11 @@
|
|
96
96
|
|
97
97
|
<h3>Clear Tube</h3>
|
98
98
|
<form id="clear_form" class="well form-inline" name="clear_form" action="<%= u("/clear") %>" method="POST">
|
99
|
-
<input
|
100
|
-
<input
|
101
|
-
<select name="state"class="span3">
|
102
|
-
<option value="buried"
|
103
|
-
<option value="ready"
|
99
|
+
<input type="hidden" name="tube" value="<%= @tube.name %>">
|
100
|
+
<input type="hidden" name="url_base" value="<%= u("/") %>">
|
101
|
+
<select name="state" class="span3">
|
102
|
+
<option value="buried">Buried</option>
|
103
|
+
<option value="ready">Ready</option>
|
104
104
|
<option value="delayed">Delayed</option>
|
105
105
|
</select>
|
106
106
|
<button type="submit" class="btn">Clear</button>
|