Sha256: ce96cd5b520745d8c3ff189be783e8e6486bb80d17e3e14ac61141b7756a7fce
Contents?: true
Size: 1.1 KB
Versions: 45
Compression:
Stored size: 1.1 KB
Contents
<%= form_tag update_multiple_admin_pictures_path do %> <%= hidden_field_tag :q, search_filter_params[:q] %> <%= hidden_field_tag :size, params[:size] %> <%= hidden_field_tag :tagged_with, search_filter_params[:tagged_with] %> <%= hidden_field_tag :filter, search_filter_params[:filter] %> <% @pictures.pluck(:id).each do |id| %> <%= hidden_field_tag "picture_ids[]", id %> <% end %> <%= render_message do %> <%= Alchemy.t('You are about to edit many pictures at once') % {length: @pictures.size} %> <% end %> <div class="input text"> <%= label_tag :pictures_name, Alchemy.t('Name'), class: 'control-label' %> <%= text_field_tag :pictures_name %> </div> <div class="input tag_list"> <%= label_tag :pictures_tag_list, Alchemy.t(:tags), class: 'control-label' %> <%= text_field_tag :pictures_tag_list, @tags, data: {autocomplete: alchemy.autocomplete_admin_tags_path} %> <small class="hint"><%= Alchemy.t('Please seperate the tags with commata') %></small> </div> <div class="submit"> <%= button_tag Alchemy.t(:save), name: nil, class: 'button' %> </div> <% end %>
Version data entries
45 entries across 45 versions & 1 rubygems