Guest User

Untitled

a guest
Feb 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <%= form_tag preview_path(@document, format: :pdf), method: :get do %>
  2. <%= select_tag "id", options_from_collection_for_select(@templates, "id", "code"), include_blank: true %>
  3. <%= submit_tag "Download" %>
  4. <% end %>
  5.  
  6. respond_to do |format|
  7. format.pdf do
  8. render pdf: "Labels " + @template.code,
  9. template: "documents/preview.pdf.erb",
  10. layout: 'layouts/pdf.html.erb',
  11. disposition: 'attachment', /* DIRECT DOWNLOAD */
  12. locals: {:document => @document},
  13. show_as_html: false,
  14. margin: { top: @template.top_margin, # default 10 (mm)
  15. bottom: @template.bottom_margin,
  16. left: @template.left_margin,
  17. right: @template.right_margin },
  18. paper_size: @template.paper_size
  19. end
  20. end
  21. end
Add Comment
Please, Sign In to add comment