Compare commits
2 Commits
c8dcedaf0c
...
583b513510
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
583b513510 | ||
|
|
2df2ced8b9 |
@@ -16,9 +16,9 @@
|
||||
<span class="p-1.5 text-xs font-medium uppercase tracking-wider bg-opacity-50 text-status-<%= job.status.to_sym %> bg-status-<%= job.status %>-light rounded-lg"><%= job.status %></span>
|
||||
</td>
|
||||
<td class="p-3 text-sm text-left text-hsrm-gray whitespace-nowrap">
|
||||
<%= link_to "edit", edit_job_url(job), class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
|
||||
<%= link_to "edit", edit_job_path(job), class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
|
||||
<% if job.able_to_cancel? %>
|
||||
<%= button_to "cancel", cancel_job_url(job), method: :patch, class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
|
||||
<%= button_to "cancel", cancel_job_path(job), method: :patch, class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
|
||||
<% end %>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="w-full">
|
||||
<div id="notice">
|
||||
<% if notice.present? %>
|
||||
<p class="p-4 bg-green-100 text-green-700 font-medium rounded-lg border-l-4"><%= notice %></p>
|
||||
<p class="p-4 bg-green-100 text-green-700 font-medium rounded-lg border-l-4 border-green-700"><%= notice %></p>
|
||||
<% end %>
|
||||
</div>
|
||||
<% content_for :title, "Current Print Jobs" %>
|
||||
|
||||
Reference in New Issue
Block a user