You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_issue_query_selection.html.erb 486B

12345678910111213141516171819
  1. <h3>
  2. <%= l(:label_issue_plural) %>
  3. </h3>
  4. <div id="<%= block %>-settings">
  5. <%= form_tag(my_page_path, :remote => true) do %>
  6. <div class="box">
  7. <p>
  8. <label>
  9. <%= l(:label_query) %>
  10. <%= select_tag "settings[#{block}][query_id]", content_tag("option") + options_from_collection_for_select(queries, :id, :name, settings[:query_id]) %>
  11. </label>
  12. </p>
  13. </div>
  14. <p>
  15. <%= submit_tag l(:button_save) %>
  16. </p>
  17. <% end %>
  18. </div>