Sha256: 146f25b9e1a9656a1d028f7efad1a58f66b5e303b20bebf23b10f817b4c0f86b

Contents?: true

Size: 658 Bytes

Versions: 2

Compression:

Stored size: 658 Bytes

Contents

<%= link_to 'Clear', clear_messages_path, :method => :delete, :data => {:confirm => "Are you sure?"} %>
<table>
  <colgroup>
    <col width="250px"></col>
    <col width="300px"></col>
    <col></col>
    <col width="200px"></col>
  </colgroup>
  <tr>
    <th>From</th>
    <th>To</th>
    <th>Body</th>
    <th>Date</th>
  </tr>
  <% @messages.reverse_each do |message| %>
    <tr>
      <td>
        <%= message.from %>
      </td>
      <td>
        <%= message.to %>
      </td>
      <td>
        <%= link_to message.body, message_path(:id => message.id) %>
      </td>
      <td>
        <%= message.date  %>
      </td>
    </tr>
  <% end %>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
virtual_sms-0.2.0 app/views/virtual_sms/messages/index.html.erb
virtual_sms-0.1.1 app/views/virtual_sms/messages/index.html.erb