diff --git a/app/views/tickets/_ticket.html.haml b/app/views/tickets/_ticket.html.haml
index c31703b3..712218fd 100644
--- a/app/views/tickets/_ticket.html.haml
+++ b/app/views/tickets/_ticket.html.haml
@@ -7,6 +7,8 @@
%h5.media-heading
-if !ticket.description.blank?
= markdown(ticket.description)
+ %td.col-sm-q.col-md-1
+ = ticket.payment_mode
%td.col-sm-1.col-md-1
- if ticket.bought?(current_user)
= text_field_tag("tickets[][#{ticket.id}]", ticket.quantity_bought_by(current_user),
diff --git a/app/views/tickets/index.html.haml b/app/views/tickets/index.html.haml
index 542c2624..4ff678e4 100644
--- a/app/views/tickets/index.html.haml
+++ b/app/views/tickets/index.html.haml
@@ -14,6 +14,7 @@
%thead
%tr
%th Ticket
+ %th Payment
%th Quantity
%th Price
%th Total
@@ -21,6 +22,7 @@
- @conference.tickets.each do |ticket|
= render partial: 'ticket', f: f, locals: {ticket: ticket}
%tr
+ %td
%td
%td
%td.col-sm-1.col-md-1.text-center
@@ -43,4 +45,4 @@
.col-md-13
%p.text-muted.text-center
%small
- * Buying a ticket is not mandatory. Checkout will be at the conference registration.
\ No newline at end of file
+ * Buying a ticket is not mandatory. Checkout will be at the conference registration.