add ticket payment_mode in organiser's views

This commit is contained in:
Rishabh Saxena 2016-05-30 19:32:33 +05:30
parent a8fd1a7903
commit e2a9dd1db1
3 changed files with 5 additions and 1 deletions

View file

@ -13,6 +13,7 @@
%th Price
%th Sold
%th Turnover
%th Payment Mode
%th Actions
%tbody
- @conference.tickets.each do |ticket|
@ -26,6 +27,8 @@
= ticket.tickets_sold
%td
= humanized_money_with_symbol ticket.tickets_turnover
%td
= ticket.payment_mode
%td
.btn-group
= link_to 'Edit', edit_admin_conference_ticket_path(@conference.short_title, ticket.id),