Sha256: 6df3e64074119c4f0c1a2fc182538cb5d893674eeb33536f9eec51c67ebfc25b

Contents?: true

Size: 460 Bytes

Versions: 8

Compression:

Stored size: 460 Bytes

Contents

<% if @scenarios.empty? %>
<p>There are currently no scenarios for this project.</p>
<% else %>
<table class="list">
  <thead>
    <tr>
      <th>Name</th>
      <th>Type</th>
    </tr>
  </thead>
  <tbody>
  <% @scenarios.each do |scenario| %>
    <tr>
      <td><a href="/projects/<%= @project.id %>/scenarios/<%= scenario.id %>"><%= scenario[:name] %></a></td>
      <td><%= scenario.linkage_type %></td>
    </tr>
  <% end %>
  </tbody>
</table>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
coupler-0.0.9-java webroot/views/scenarios/list.erb
coupler-0.0.8-java webroot/views/scenarios/list.erb
coupler-0.0.7-java webroot/views/scenarios/list.erb
coupler-0.0.6-java webroot/views/scenarios/list.erb
coupler-0.0.4-java webroot/views/scenarios/list.erb
coupler-0.0.3-java webroot/views/scenarios/list.erb
coupler-0.0.2-java webroot/views/scenarios/list.erb
coupler-0.0.1-java webroot/views/scenarios/list.erb