foodsoft/app/views/shared/_group_form_fields.html.haml

48 lines
1.5 KiB
Plaintext
Raw Normal View History

2011-06-10 01:36:04 +02:00
= f.input :name
2012-10-09 02:31:10 +02:00
= f.input :description, as: :text, input_html: {rows: 4}
2011-06-10 01:36:04 +02:00
= yield
- if f.object.is_a?(Workgroup)
2013-02-08 19:16:06 +01:00
%h3= t '.title'
2011-06-10 01:36:04 +02:00
= f.input :weekly_task
#weekly_task_fields
= f.input :weekday, as: :select, collection: Workgroup.weekdays
2011-06-10 01:36:04 +02:00
= f.input :task_name
= f.input :task_required_users
= f.input :task_duration, :as => :select, :collection => (1..3)
2012-10-09 02:31:10 +02:00
= f.input :task_description, as: :text, input_html: {rows: 5}
2012-07-31 18:48:41 +02:00
= f.input :next_weekly_tasks_number
2011-06-10 01:36:04 +02:00
2012-10-09 02:31:10 +02:00
= f.input :user_tokens, :as => :string,
:input_html => { 'data-pre' => f.object.users.map { |u| u.token_attributes }.to_json }
2011-06-10 13:22:15 +02:00
2012-10-09 02:31:10 +02:00
- content_for :javascript do
2011-06-10 01:36:04 +02:00
:javascript
function toggleWeeklyTaskFields() {
2011-06-10 13:22:15 +02:00
if ($('#workgroup_weekly_task').is(':checked')) {
2012-10-09 02:31:10 +02:00
$('#weekly_task_fields .control-group').show();
2011-06-10 13:22:15 +02:00
$('#weekly_task_fields input').removeAttr('disabled');
2011-06-10 01:36:04 +02:00
} else {
2012-10-09 02:31:10 +02:00
$('#weekly_task_fields .control-group').hide();
2011-06-10 13:22:15 +02:00
$('#weekly_task_fields input').attr('disabled', 'disabled');
2011-06-10 01:36:04 +02:00
}
}
$(function() {
toggleWeeklyTaskFields();
$('#workgroup_weekly_task').click(function() {
toggleWeeklyTaskFields();
2011-06-10 13:22:15 +02:00
});
$("##{f.object.class.to_s.underscore}_user_tokens").tokenInput("#{users_path(:format => :json)}", {
crossDomain: false,
2012-07-31 18:48:41 +02:00
prePopulate: $("##{f.object.class.to_s.underscore}_user_tokens").data("pre"),
2013-02-09 10:19:48 +01:00
hintText: '#{t('.search_user')}',
noResultText: '#{t('.user_not_found')}',
searchingText: '#{t('.search')}',
2012-10-09 02:31:10 +02:00
theme: 'facebook'
2011-06-10 13:22:15 +02:00
});
});