Sha256: 5e2353bd8392ce8f674233b6ea7d1b8f5024abae005d7ea92818a8bc4ce2204d

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.listing', :model => t('activerecord.models.participate')) -%></h1>
<div id="content_list">

<table class="table table-striped index">
  <tr>
    <th><%= t('activerecord.models.agent') -%></th>
    <th><%= t('activerecord.models.event') -%></th>
  </tr>

<%- @participates.each do |participate| %>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to participate.agent.full_name, participate.agent %>
    <td><%= link_to participate.event.display_name.localize, participate.event %>
    <td><%= link_to t('page.show'), participate %></td>
    <td><%= link_to t('page.edit'), edit_participate_path(participate) %></td>
    <td><%= link_to t('page.destroy'), participate, :data => {:confirm => t('page.are_you_sure')}, :method => :delete %></td>
  </tr>
<%- end %>
</table>

<%= paginate(@participates) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('page.new', :model => t('activerecord.models.participate')), new_participate_path -%></li>
  </ul>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_event-0.1.17.pre17 app/views/participates/index.html.erb
enju_event-0.1.17.pre16 app/views/participates/index.html.erb
enju_event-0.1.17.pre15 app/views/participates/index.html.erb
enju_event-0.1.17.pre14 app/views/participates/index.html.erb
enju_event-0.1.17.pre13 app/views/participates/index.html.erb