Skip to content

Commit

Permalink
fix issue Increase width of ticketing form #2902
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohanhacker authored and niranjan94 committed Jan 10, 2017
1 parent b999a9d commit 5113dc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gentelella/guest/event/_ticketing_box.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% if (not tickets or tickets.count() == 0) and event.ticket_url and event.ticket_url != "" and event.identifier not in event.ticket_url %}
<div class="col-md-10 col-sm-10 col-xs-12">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading" style="background-color: #ffffff;">
<h3 class="panel-title">{{ _("Ticket Information") }}</h3>
Expand All @@ -15,7 +15,7 @@ <h3 class="panel-title">{{ _("Ticket Information") }}</h3>
</div>
{% endif %}
{% if tickets and tickets.count() > 0 %}
<div id="ticketing-holder" class="col-md-10 col-sm-10 col-xs-12">
<div id="ticketing-holder" class="col-xs-12">
<form method="POST" action="{{ url_for('ticketing.create_order') }}" enctype="multipart/form-data">
<input type="hidden" name="event_id" value="{{ event.id }}">
<div class="panel panel-default">
Expand Down

0 comments on commit 5113dc5

Please sign in to comment.