vidpush/app/views/campaigns/_videolisting_fields.html.erb
2014-05-02 15:04:49 -04:00

29 lines
1.5 KiB
Plaintext

<div class="nested-fields videolisting_field">
<%= f.input :voiceoverselection,
label: 'Voiceover Selection',
collection: voiceoverselection_list,
hint: "What type of voiceover talent to use." %>
<%= f.input :musicselection,
label: 'Music Selection',
collection: musicselection_list,
hint: "What type of music to use in the video." %>
<%= f.input :clientprovidedscript,
label: 'Client Provided Script',
as: 'text',
hint: "If the customer has provided a script for BetterVideo to use. Formatting is text only." %>
<%= f.input :toneofvideo,
label: 'Tone of Video',
as: 'text',
hint: "What tone of video do you want?" %>
<%= f.input :notes,
label: 'Production Notes',
as: 'text',
hint: "Notes and/or instructions sent in this field are used by the editors to aid in production of the video." %>
<%= f.input :asseturls,
label: 'Asset Urls',
as: 'string',
hint: "A list of all file assets. Comma Separated, (press backspace or click the x to remove)",
input_html: {data: {role: "tagsinput" }, value: ""} %>
<div class="text-right remove-video"><%= link_to_remove_association "Remove Video Listing", f %></div>
</div>