Skip to content

Commit 31e5bcc

Browse files
committed
Add Location to table
1 parent 0b5c7da commit 31e5bcc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

app/views/job_applications/_job_application.html.erb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
2727
<%= job_application.status.humanize %>
2828
</td>
29+
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
30+
<%= job_application.location.humanize %>
31+
</td>
2932
<td class="px-5 py-5 border-b border-gray-200 bg-white text-sm">
3033
<% if job_application.website_link.present? %>
3134
<%= link_to 'Visit',

app/views/job_applications/_job_applications_table.html.erb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
<th class="px-5 py-3">
3232
<%= sort_link_to 'Status', 'status' %>
3333
</th>
34+
<th class="px-5 py-3">
35+
<%= sort_link_to 'Location', 'location' %>
36+
</th>
3437
<th class="px-5 py-3">
3538
Website
3639
</th>

0 commit comments

Comments
 (0)