36 lines
1.7 KiB
Text
36 lines
1.7 KiB
Text
.container-fluid
|
|
= form_for Conversation.new, html: {id: "new-conversation",
|
|
class: "new-conversation form-horizontal"}, remote: true do |conversation|
|
|
.form-group
|
|
%label#to-label{for: "contacts-search-input"}= t(".to")
|
|
.recipients-tag-list.clearfix#recipients-tag-list
|
|
= text_field_tag "contact_autocomplete",
|
|
nil,
|
|
id: "contacts-search-input",
|
|
class: "form-control",
|
|
autocomplete: "off"
|
|
|
|
- unless defined?(mobile) && mobile
|
|
= text_field_tag "person_ids", nil, id: "contact-ids", type: "hidden",
|
|
aria: {labelledby: "to-label"}
|
|
|
|
.form-group
|
|
%label#subject-label{for: "conversation-subject"}
|
|
= t(".subject")
|
|
= conversation.text_field :subject,
|
|
id: "conversation-subject",
|
|
class: "input-block-level form-control",
|
|
aria: {labelledby: "subject-label"},
|
|
value: "",
|
|
placeholder: t("conversations.new.subject_default")
|
|
|
|
.form-group
|
|
%label.sr-only#message-label{for: "new-message-text"}= t(".message")
|
|
= text_area_tag "conversation[text]", "",
|
|
rows: 5,
|
|
id: "new-message-text",
|
|
class: "conversation-message-text input-block-level form-control",
|
|
aria: {labelledby: "message-label"}
|
|
|
|
.form-group
|
|
= conversation.submit t(".send"), "data-disable-with" => t(".sending"), :class => "btn btn-primary pull-right"
|