summaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-03-26 17:36:37 +0100
committerAzul <azul@riseup.net>2016-05-02 08:31:17 -0300
commitde8f3e532d857ec64a9ba17bf9e5a4de272a6cbd (patch)
treee1b7ae146a0d8395edea1c4ac4626c421db8e60b /engines
parent2d75afb15e005e97a57b68abae0a34f1a2c4a30b (diff)
upgrade: use bootstrap3 row and col-md-*
Diffstat (limited to 'engines')
-rw-r--r--engines/support/app/views/tickets/_edit_form.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/support/app/views/tickets/_edit_form.html.haml b/engines/support/app/views/tickets/_edit_form.html.haml
index cd1dbe4..8d64256 100644
--- a/engines/support/app/views/tickets/_edit_form.html.haml
+++ b/engines/support/app/views/tickets/_edit_form.html.haml
@@ -34,12 +34,12 @@
= simple_form_for @ticket do |f|
= hidden_ticket_fields
= f.input :subject, input_html: {:class => 'large full-width'}
- .row-fluid
- .span4
+ .row
+ .col-md-4
= f.input :is_open, as: :select, collection: [:true, :false], include_blank: false
- .span4
+ .col-md-4
= f.input :email
- .span4
+ .col-md-4
= f.input :regarding_user, label: (Ticket.human_attribute_name(:regarding_user) + " " + regarding_user_link).html_safe
= f.button :loading
- if admin?