Added registration-ticket

Added registration type tickets that will used in the check-in process
This commit is contained in:
siddhantbajaj 2017-08-07 15:10:06 +05:30
parent 9b7562fe2e
commit f31651ad9c
5 changed files with 12 additions and 2 deletions

View file

@ -14,6 +14,7 @@
%th Price
%th Sold
%th Turnover
%th Registration Ticket
%th Actions
%tbody
- @conference.tickets.each do |ticket|
@ -27,6 +28,8 @@
= ticket.tickets_sold
%td
= humanized_money_with_symbol ticket.tickets_turnover
%td
= ticket.registration_ticket? ? 'Yes' : 'No'
%td
.btn-group
= link_to 'Edit', edit_admin_conference_ticket_path(@conference.short_title, ticket.id),