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