Sha256: 22badc1f92517adb3bf7bfc26ff4464778bcf671c6aff046ce033f03ab1efda2

Contents?: true

Size: 815 Bytes

Versions: 4

Compression:

Stored size: 815 Bytes

Contents

<table class="table table-striped">
  <thead>
    <tr>
      <th><%= t('activerecord.models.task') %></th>
      <th><%= t('activerecord.models.story') %></th>
      <th><%= t('activerecord.models.project') %></th>
      <th><%= t('activerecord.models.product') %></th>
    </tr>
  </thead>
  <tbody>
<% @tasks.each do |task| %>
    <tr>
      <td><%= link_to task.name, edit_task_workflow_user_index_path(task) %></td>
      <td><%= link_to task.story.name, story_path(task.story) %></td>
      <td><%= link_to task.story.project.name, project_path(task.story.project) %></td>
      <td>
  <% if task.story.project.product %>
        <%= link_to task.story.project.product.name, product_path(task.story.project.product) %>
  <% else %>
        -
  <% end %>    
      </td>
    </tr>
<% end %>
  </tbody>
</table>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
voluntary-0.7.1 app/views/workflow/user/tasks/assigned.html.erb
voluntary-0.7.0 app/views/workflow/user/tasks/assigned.html.erb
voluntary-0.6.0 app/views/workflow/user/tasks/assigned.html.erb
voluntary-0.5.2 app/views/workflow/user/tasks/assigned.html.erb