Sha256: c0c3dd5b266e606bb50372d79fcaf4fadc156ea730d1cf0586eeea407bf1c81a
Contents?: true
Size: 472 Bytes
Versions: 40
Compression:
Stored size: 472 Bytes
Contents
<% provide :title, "Deliver new inbound email" %> <h1>All inbound emails</h1> <table> <tr><th>Message ID</th><th>Status</th></tr> <% @inbound_emails.each do |inbound_email| %> <tr> <td><%= link_to inbound_email.message_id, main_app.rails_conductor_inbound_email_path(inbound_email) %></td> <td><%= inbound_email.status %></td> </tr> <% end %> </table> <%= link_to "Deliver new inbound email", main_app.new_rails_conductor_inbound_email_path %>
Version data entries
40 entries across 40 versions & 4 rubygems