Sha256: e7f3507aa24f6976a6ac2a92d51c8ecfc8c987b76c39dffb5ba016f8b239fd26

Contents?: true

Size: 1.58 KB

Versions: 30

Compression:

Stored size: 1.58 KB

Contents

<% 
unless @user_request.nil?
%>

<div class="inner_modal_dialog send_to_txt">
<%= form_tag( {:controller => "export_email", :action => "send_txt", :id => params[:id]}, :class => "modal_dialog_form" ) do %>
  <h2>Send the title and location of an item to your mobile phone</h2>
  
  <div class="formError">
    <%= @error || flash[:error] %>
  </div>
  
  <h3><strong>Title:</strong> 
    <%= h(brief_citation(@user_request)) %>
  </h3>
  <div class="section">
    <%= label_tag('number', 'Enter your mobile phone number:') %>
    
    <%= text_field_tag('number', params[:number], :size => 14) %>
    <p class="smallText"><em>10 digit US cell phone number</em></p>
  </div>
  
  <div class="section">
    <%= label_tag('provider', 'Select your provider:') %>
    <%
      providers = @svc_response.service.instance_variable_get("@providers")
    %>
    <%= select_tag "provider", options_for_select(providers.sort, params[:provider]) %>
  </div>
<%
  holdings = @user_request.get_service_type('holding', {})
%>
  <div class="section">
    <p>Choose the item you want to send:</p>
    <ul>
<%
      holdings.each do |p|
        target = p.view_data
 %>
       <li>
        <%= radio_button_tag 'holding', p.id, (params[:holding].to_s == p.id.to_s) || holdings.length == 1 %>
        <%= label_tag "holding_#{p.id}", formatted_html_holding_status(target) %>
       </li>
<%
    end
%>
  </ul>
  </div>


  <div class="section">
    <p class="smallText"><em>Note: charges may apply if your service plan does not cover unlimited texting</em></p>
  
    <%= submit_tag 'Send!' %>
    

  </div>
<%
end 
end
%>
</div>

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
umlaut-3.0.0alpha10 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha9 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha8 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha7 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha6 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha5 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha4 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha3 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha2 app/views/export_email/_txt.html.erb
umlaut-3.0.0alpha1 app/views/export_email/_txt.html.erb