Make it possible to add video id's for events, some minor styling fixes
This commit is contained in:
parent
453133a26b
commit
8ca9b8cec4
3 changed files with 58 additions and 60 deletions
|
|
@ -10,7 +10,6 @@
|
|||
#proposal-content.tab-pane.active
|
||||
= render 'proposal/proposal_form'
|
||||
#attachment-content.tab-pane
|
||||
.span12
|
||||
= form_for EventAttachment.new, :url => conference_proposal_event_attachment_index_path(@conference.short_title, @event), :html => { :multipart => true, :id => "fileupload" } do |f|
|
||||
%table.table.table-striped
|
||||
%thead
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
.span12
|
||||
= semantic_form_for(@event, :url => @url) do |f|
|
||||
= semantic_form_for(@event, :url => @url) do |f|
|
||||
%section#basic
|
||||
= f.inputs :name => "Session Information" do
|
||||
= f.input :title, :as => :string, :required => true
|
||||
|
|
@ -21,6 +20,7 @@
|
|||
%br
|
||||
%br
|
||||
= f.input :description, :input_html => {:rows => 5, :class=> "span11"}, :hint => "This will only be shown to organizers, not to attendees."
|
||||
= f.input :video_id, :as => :string, :hint => "Go to your youtube video, click on \"share\" and copy everything behind http://youtu.be/"
|
||||
%section#information
|
||||
= f.inputs :name => "Your Information" do
|
||||
= semantic_fields_for @person do |p|
|
||||
|
|
@ -32,7 +32,6 @@
|
|||
words. Biographies are limited to 150 words.
|
||||
%br
|
||||
%br
|
||||
|
||||
%section#speakers
|
||||
= f.inputs :name => "Additional Speakers" do
|
||||
Will there be any additional speakers? If so, please enter their full names, email address, and a short
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
= simple_format(@event.abstract)
|
||||
%dl
|
||||
%dt Date:
|
||||
%dd= @event.start_time.strftime("%Y %B %e")
|
||||
%dd= @event.start_time.strftime("%Y %B %e %H:%M")
|
||||
%dt Conference:
|
||||
%dd= @event.conference.title
|
||||
- if @event.language
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue