|
|
@ -21,62 +21,93 @@ See doc/COPYRIGHT.md for more details. |
|
|
|
|
|
|
|
|
|
|
|
<%= error_messages_for 'meeting' %> |
|
|
|
<%= error_messages_for 'meeting' %> |
|
|
|
|
|
|
|
|
|
|
|
<div class="box tabular"> |
|
|
|
<section class="form--section"> |
|
|
|
<p><%= f.text_field :title, :required => true, :size => 60, :class => "autofocus" %></p> |
|
|
|
|
|
|
|
<p><%= f.text_field :location, :size => 60 %></p> |
|
|
|
<div class="form--field"> |
|
|
|
<p> |
|
|
|
<%= f.text_field :title, :required => true, :size => 60, :class => "autofocus" %> |
|
|
|
<%= f.text_field :start_date, :required => true, :size => 10 %> |
|
|
|
</div> |
|
|
|
<%= calendar_for('meeting_start_date') %> |
|
|
|
|
|
|
|
<span class="inline-label"> |
|
|
|
<div class="form--field"> |
|
|
|
<%= accessible_time_select "meeting", "start_time", :ignore_date => true, :minute_step => 5 %> |
|
|
|
<%= f.text_field :location, :size => 60 %> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form--field"> |
|
|
|
|
|
|
|
<label class="form--label"><%= Meeting.human_attribute_name(:start_date) %></label> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form--field-container"> |
|
|
|
|
|
|
|
<%= f.text_field :start_date, |
|
|
|
|
|
|
|
required: true, |
|
|
|
|
|
|
|
size: 10, |
|
|
|
|
|
|
|
no_label: true %> |
|
|
|
|
|
|
|
<%= f.text_field :start_time_hour, |
|
|
|
|
|
|
|
required: true, |
|
|
|
|
|
|
|
type: 'time', |
|
|
|
|
|
|
|
no_label: true, |
|
|
|
|
|
|
|
step: 5.minutes %> |
|
|
|
|
|
|
|
<%= calendar_for('meeting_start_date') %> |
|
|
|
<span class="form-label"><%= Time.zone %></span> |
|
|
|
<span class="form-label"><%= Time.zone %></span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<p> |
|
|
|
|
|
|
|
<span class="inline-label"> |
|
|
|
<div class="form--field"> |
|
|
|
<%= f.text_field :duration, :required => true, :size => 5 %> |
|
|
|
<label class="form--label"><%= Meeting.human_attribute_name(:duration) %></label> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form--field-container"> |
|
|
|
|
|
|
|
<%= f.number_field :duration, |
|
|
|
|
|
|
|
required: true, |
|
|
|
|
|
|
|
size: 5, |
|
|
|
|
|
|
|
no_label: true, |
|
|
|
|
|
|
|
min: 0.00, |
|
|
|
|
|
|
|
step: 0.25, |
|
|
|
|
|
|
|
max: 168 %> |
|
|
|
<span class="form-label"><%=l :text_in_hours %></span> |
|
|
|
<span class="form-label"><%=l :text_in_hours %></span> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div><label><%=Meeting.human_attribute_name(:participants) %></label> |
|
|
|
|
|
|
|
<table class="list"> |
|
|
|
<div class="form--field"> |
|
|
|
<thead><tr> |
|
|
|
<label class="form--label"><%=Meeting.human_attribute_name(:participants) %></label> |
|
|
|
<th><%=Meeting.human_attribute_name(:name) %></th> |
|
|
|
<div class="form--field-container"> |
|
|
|
<th><%=Meeting.human_attribute_name(:participants_invited) %></th> |
|
|
|
<table class="form--table"> |
|
|
|
<th><%=Meeting.human_attribute_name(:participants_attended) %></th> |
|
|
|
<thead> |
|
|
|
</tr></thead> |
|
|
|
<tr class="form--table-header-row"> |
|
|
|
<tbody> |
|
|
|
<th class="form--table-header-row-cell"><%= Meeting.human_attribute_name(:name) %></th> |
|
|
|
<% @meeting.all_changeable_participants.sort.each do |user| -%> |
|
|
|
<th class="form--table-header-row-cell"><%= Meeting.human_attribute_name(:participants_invited) %></th> |
|
|
|
<%= hidden_field_tag "meeting[participants_attributes][][user_id]", user.id %> |
|
|
|
<th class="form--table-header-row-cell"><%= Meeting.human_attribute_name(:participants_attended) %></th> |
|
|
|
<tr class="<%= cycle("odd", "even")%>"> |
|
|
|
</tr> |
|
|
|
<td><%=h user %></td> |
|
|
|
</thead> |
|
|
|
<% if @meeting.participants.present? && participant = @meeting.participants.detect{|p| p.user_id == user.id} -%> |
|
|
|
<tbody> |
|
|
|
<%= hidden_field_tag "meeting[participants_attributes][][id]", participant.id %> |
|
|
|
<% @meeting.all_changeable_participants.sort.each do |user| -%> |
|
|
|
<td class="checkox" align="center"> |
|
|
|
<%= hidden_field_tag "meeting[participants_attributes][][user_id]", user.id %> |
|
|
|
<%= label_tag "checkbox_invited_#{user.id}", user.name + " " + l(:description_invite), :class => "hidden-for-sighted" %> |
|
|
|
<tr class="form--table-row"> |
|
|
|
<%= check_box_tag "meeting[participants_attributes][][invited]", 1, participant.invited?, :id => "checkbox_invited_#{user.id}" %> |
|
|
|
<td><%=h user %></td> |
|
|
|
</td> |
|
|
|
<% if @meeting.participants.present? && participant = @meeting.participants.detect{|p| p.user_id == user.id} -%> |
|
|
|
<td class="checkox" align="center"> |
|
|
|
<%= hidden_field_tag "meeting[participants_attributes][][id]", participant.id %> |
|
|
|
<%= label_tag "checkbox_attended_#{user.id}", user.name + " " + l(:description_attended), :class => "hidden-for-sighted" %> |
|
|
|
<td class="form--table-checkbox-cell"> |
|
|
|
<%= check_box_tag "meeting[participants_attributes][][attended]", 1, participant.attended?, :id => "checkbox_attended_#{user.id}" %> |
|
|
|
<%= label_tag "checkbox_invited_#{user.id}", user.name + " " + l(:description_invite), :class => "hidden-for-sighted" %> |
|
|
|
</td> |
|
|
|
<%= styled_check_box_tag "meeting[participants_attributes][][invited]", 1, participant.invited?, :id => "checkbox_invited_#{user.id}" %> |
|
|
|
<% else -%> |
|
|
|
</td> |
|
|
|
<td class="checkox" align="center"> |
|
|
|
<td class="form--table-checkbox-cell"> |
|
|
|
<%= label_tag "checkbox_invited_#{user.id}", user.name + " " + l(:description_invite), :class => "hidden-for-sighted" %> |
|
|
|
<%= label_tag "checkbox_attended_#{user.id}", user.name + " " + l(:description_attended), :class => "hidden-for-sighted" %> |
|
|
|
<%= check_box_tag "meeting[participants_attributes][][invited]", value = "1", checked = false, :id => "checkbox_invited_#{user.id}" %> |
|
|
|
<%= styled_check_box_tag "meeting[participants_attributes][][attended]", 1, participant.attended?, :id => "checkbox_attended_#{user.id}" %> |
|
|
|
</td> |
|
|
|
</td> |
|
|
|
<td class="checkox" align="center"> |
|
|
|
<% else -%> |
|
|
|
<%= label_tag "checkbox_attended_#{user.id}", user.name + " " + l(:description_attended), :class => "hidden-for-sighted" %> |
|
|
|
<td class="form--table-checkbox-cell"> |
|
|
|
<%= check_box_tag "meeting[participants_attributes][][attended]", value = "1", checked = false, :id => "checkbox_attended_#{user.id}" %> |
|
|
|
<%= label_tag "checkbox_invited_#{user.id}", user.name + " " + l(:description_invite), :class => "hidden-for-sighted" %> |
|
|
|
</td> |
|
|
|
<%= styled_check_box_tag "meeting[participants_attributes][][invited]", value = "1", checked = false, :id => "checkbox_invited_#{user.id}" %> |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<td class="form--table-checkbox-cell"> |
|
|
|
|
|
|
|
<%= label_tag "checkbox_attended_#{user.id}", user.name + " " + l(:description_attended), :class => "hidden-for-sighted" %> |
|
|
|
|
|
|
|
<%= styled_check_box_tag "meeting[participants_attributes][][attended]", value = "1", checked = false, :id => "checkbox_attended_#{user.id}" %> |
|
|
|
|
|
|
|
</td> |
|
|
|
|
|
|
|
<% end -%> |
|
|
|
|
|
|
|
</tr> |
|
|
|
<% end -%> |
|
|
|
<% end -%> |
|
|
|
</tr> |
|
|
|
</tbody> |
|
|
|
<% end -%> |
|
|
|
</table> |
|
|
|
</tbody> |
|
|
|
</div> |
|
|
|
</table> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<%= hidden_field_tag "copied_from_meeting_id", params[:copied_from_meeting_id] if params[:copied_from_meeting_id].present? %> |
|
|
|
<%= hidden_field_tag "copied_from_meeting_id", params[:copied_from_meeting_id] if params[:copied_from_meeting_id].present? %> |
|
|
|
<%= hidden_field_tag "copied_meeting_agenda_text", params[:copied_meeting_agenda_text] if params[:copied_meeting_agenda_text].present? %> |
|
|
|
<%= hidden_field_tag "copied_meeting_agenda_text", params[:copied_meeting_agenda_text] if params[:copied_meeting_agenda_text].present? %> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
|
|
<%= render :partial => 'shared/meeting_header' %> |
|
|
|
<%= render :partial => 'shared/meeting_header' %> |
|
|
|