diaspora/app/views/conversations/_new.haml
Augier 207b6c6153 Port to Bootstrap 3
correcting images display on stream sidebar

Corrections on profile page
2015-06-04 18:05:43 +02:00

14 lines
684 B
Text

.container-fluid
= form_for Conversation.new, html: {class: "form-horizontal form_do_not_clear"}, remote: true do |conversation|
.form-group
%label{ for: 'contact_ids' }
= t('.to')
= text_field_tag "contact_autocomplete", nil, class: "form-control"
.form-group
%label{ for: 'conversation_subject' }
= t('.subject')
= conversation.text_field :subject, class: 'input-block-level form-control'
.form-group
= text_area_tag "conversation[text]", '', rows: 5, class: 'input-block-level form-control'
.form-group
= conversation.submit t('.send'), 'data-disable-with' => t('.sending'), class: 'btn btn-primary pull-right'