Sha256: f12866ff01cd000a284c5f80660fdf6c8fe648a64c11e87b7dc4031f49ab609a
Contents?: true
Size: 1.5 KB
Versions: 5
Compression:
Stored size: 1.5 KB
Contents
= render "layouts/manage/page_title", title: "Questionnaires" do = link_to "New Questionnaire", new_manage_questionnaire_path, class: "btn btn-sm btn-outline-secondary" %div %table.questionnaires.datatable.table.table-striped.table-hover{ "data-source" => datatable_manage_questionnaires_path(format: :json) } %thead %tr %th - unless current_user.admin_limited_access? %input{ type: "checkbox", name: "select_allc", value: "1", data: { bulk_row_select: "" } } %th %th %th ID %th First name %th Last name %th Email %th Phone %th Gender %th Date of birth %th Status %th Checked In %th School %th Applied on %th Dietary restrictions %th Special needs %tbody .row .col-sm-7.col-lg-6 %br .card .card-body %h5.card-title Bulk Action = bs_vertical_simple_form Questionnaire.new, url: bulk_apply_manage_questionnaires_path, html: { data: { bulk_row_edit: true } } do |f| = f.input :acc_status, as: :select, collection: Questionnaire::POSSIBLE_ACC_STATUS.invert, include_blank: false, label: "Acceptance Status:", input_html: { data: { bulk_row_edit: true } }, hint: "Updating this status may trigger an automatic email to each applicant - see below for details." = f.button :submit, value: "Update Status", data: { bulk_row_edit: true }, class: 'btn-primary' %hr = render 'triggered_email_summary'
Version data entries
5 entries across 5 versions & 1 rubygems