Sha256: 59db12f3dda7cb594994d561b8c94ad95aba6c0a0a45adcb009547f03ffcd76d

Contents?: true

Size: 511 Bytes

Versions: 4

Compression:

Stored size: 511 Bytes

Contents

<h1>Sent short messages</h1>
<p>All messages sent by this application</p>

<% for short_message in @short_messages %>
<div>
	<p>
		<strong>Destination:</strong> <%= short_message.destination %>
	</p>
	<p>
		<strong>Originator:</strong> <%= short_message.originator %>
	</p>
	<p>
		<strong>Originator type:</strong> <%= short_message.originator_type %>
	</p>
	<p>
		<strong>Message:</strong> <%= short_message.body %>
	</p>
</div>
<hr>
<% end %>

<p><%= link_to 'new short message', new_short_message_path %></p>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jnstq-acts_as_sms-0.1.0 test/app/views/short_messages/index.html.erb
jnstq-acts_as_sms-0.1.1 test/app/views/short_messages/index.html.erb
jnstq-acts_as_sms-0.1.3 test/app/views/short_messages/index.html.erb
jnstq-acts_as_sms-0.1.4 test/app/views/short_messages/index.html.erb