add description column to the task requests table

This commit is contained in:
Bilal
2020-06-24 14:23:26 +02:00
parent a5213feccc
commit ba826508d8
5 changed files with 63 additions and 1 deletions

View File

@@ -5,6 +5,18 @@
<td>
<%= task_request.deadline.try(:strftime, '%D') %>
</td>
<td>
<%= truncate(task_request.description) {
link_to t('.actions.read_more'),
'#',
class: 'alert-link',
data: {
toggle: "popover",
content: task_request.description,
trigger: "hover"
}
} %>
</td>
<td>
<%= task_request.time_allowed %>
</td>