2023-11-16 20:23:09 +00:00
|
|
|
|
<% html_title "Jobs" %>
|
|
|
|
|
<div class="contextual">
|
2023-11-26 20:52:05 +00:00
|
|
|
|
<%= link_to 'New job', new_project_job_path(project: @project), class: "icon icon-add new-job" %>
|
2023-11-16 20:23:09 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h2>Jobs</h2>
|
|
|
|
|
|
|
|
|
|
<% if @jobs.empty? %>
|
|
|
|
|
<p>You haven’t created any jobs yet.</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<table class="list">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
2023-11-30 19:08:55 +00:00
|
|
|
|
<th>Category</th>
|
2023-11-16 20:23:09 +00:00
|
|
|
|
<th>Starts on</th>
|
|
|
|
|
<th>Ends on</th>
|
2023-11-27 08:55:57 +00:00
|
|
|
|
<th>Progress</th>
|
2023-11-16 20:23:09 +00:00
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<%= render @jobs %>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
<% end %>
|