Sha256: 11b1d6118dea4875f187580b932fcb08d6cf42b583d6705027bcbdff48b5add0

Contents?: true

Size: 1.31 KB

Versions: 15

Compression:

Stored size: 1.31 KB

Contents

<%= form_tag url_for(controller: controller_name, action: "email"),
             data: { blacklight_modal: 'trigger' },
             id: 'email_form',
             class: "modal_form",
             method: :post do %>

  <div class="modal-body">
    <%= render '/shared/flash_msg' %>
    <div class="form-group row">
      <label class="control-label col-sm-2" for="to">
        <%= t('blacklight.email.form.to') %>
      </label>
      <div class="col-sm-10">
        <%= email_field_tag :to, params[:to], class: 'form-control' %>
      </div>
    </div>

    <div class="form-group row">
      <label class="control-label col-sm-2" for="message">
        <%= t('blacklight.email.form.message') %>
      </label>
      <div class="col-sm-10">
        <%= text_area_tag :message, params[:message], class: 'form-control' %>
      </div>
    </div>

    <% @documents.each do |doc| %>
      <%=hidden_field_tag "id[]", doc.id %>
    <% end %>
    <%- if params[:sort] -%>
      <%= hidden_field_tag "sort", params[:sort] %>
    <%- end -%>
    <%- if params[:per_page] -%>
      <%= hidden_field_tag "per_page", params[:per_page] %>
    <%- end -%>
  </div>
  <div class="modal-footer">
  <button type="submit" class="btn btn-primary"> <%= t('blacklight.sms.form.submit') %></button>
  </div>
<% end %>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
blacklight-7.7.0 app/views/catalog/_email_form.html.erb
blacklight-7.6.0 app/views/catalog/_email_form.html.erb
blacklight-7.5.1 app/views/catalog/_email_form.html.erb
blacklight-7.5.0 app/views/catalog/_email_form.html.erb
blacklight-7.4.2 app/views/catalog/_email_form.html.erb
blacklight-7.4.1 app/views/catalog/_email_form.html.erb
blacklight-7.4.0 app/views/catalog/_email_form.html.erb
blacklight-7.3.0 app/views/catalog/_email_form.html.erb
blacklight-7.2.0 app/views/catalog/_email_form.html.erb
blacklight-7.1.0 app/views/catalog/_email_form.html.erb
blacklight-7.1.0.alpha app/views/catalog/_email_form.html.erb
blacklight-7.0.1 app/views/catalog/_email_form.html.erb
blacklight-7.0.0 app/views/catalog/_email_form.html.erb
blacklight-7.0.0.rc2 app/views/catalog/_email_form.html.erb
blacklight-7.0.0.rc1 app/views/catalog/_email_form.html.erb