Sha256: f61b6a8c8118eadf653e9a6b36f4d62e4765a549afe82c960cc2ee0c72d411b9

Contents?: true

Size: 565 Bytes

Versions: 4

Compression:

Stored size: 565 Bytes

Contents

<h1>Send SMS</h1>
<%= error_messages_for(:short_message) %>
<% form_for @short_message do |f| -%>

<div>
	<%= f.label :destination, "Cellphone" %>
	<%= f.text_field :destination %>
</div>
<div>
	<%= f.label :originator, "Originator" %>
	<%= f.text_field :originator %>
</div>
<div>
	<%= f.label :originator_type, "Originator Type" %>
	<%= f.select :originator_type, ['numeric', 'shortcode', 'alpha'] %>
</div>
<div>
	<%= f.label :body, "Message" %>
	<%= f.text_area :body %>
</div>
<div>
	<%= f.submit "Submit", :disable_with => 'Submiting...' %>
</div>
<% end -%>

Version data entries

4 entries across 4 versions & 1 rubygems

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