Sample prototype for ticket pdf

Added verticl layout of ticket pdf without QR code.
This commit is contained in:
siddhantbajaj 2017-06-13 07:20:43 +05:30
parent 95fbd10153
commit b9a540f4e2
5 changed files with 80 additions and 1 deletions

View file

@ -8,5 +8,8 @@ class PhysicalTicketController < ApplicationController
@physical_tickets = current_user.physical_tickets.by_conference(@conference)
end
def show; end
def show
@file_name = "ticket_for_#{@conference.short_title}"
@user = @physical_ticket.user
end
end