Sha256: 7e8235a1a3a98d8b73a1034574e57fde0fe73c2f1b665da90c6c10a7a1a71f65
Contents?: true
Size: 767 Bytes
Versions: 1
Compression:
Stored size: 767 Bytes
Contents
<table class="table table-striped"> <thead> <tr> <th><%= t('activerecord.models.story') %></th> <th><%= t('activerecord.models.project') %></th> <th><%= t('activerecord.models.product') %></th> <th></th> </tr> </thead> <tbody> <% @stories.each do |story| %> <tr> <td><%= link_to story.name, story_path(story) %></td> <td><%= link_to story.project.name, project_path(story.project) %></td> <td> <% if story.project.product %> <%= link_to story.project.product.name, product_path(story.project.product) %> <% else %> - <% end %> </td> <td><%= link_to t('workflow.user.next_task'), next_task_workflow_user_index_path(story) %></td> </tr> <% end %> </tbody> </table>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
voluntary-0.5.2 | app/views/workflow/user/stories/index.html.erb |