');
$('[name=lesson_materials]').html(write_lesson_material(get_lesson_context(id)));
}
function show_homework_materials(id){
$('[name=lesson_materials_button]').attr('class', 'b-a list-group-item');
$('[name=lesson_materials_button][id=homework_'+id+']').attr('class', 'b-a list-group-item active');
$('[name=lesson_materials]').html('
');
$('[name=lesson_materials]').html(write_homework_material(get_homework_context(id)));
}
function show_one_lesson_materials(id){
$('[name=theme_listing]').hide();
$('[name=theme_materials_button]').attr('class', 'b-a list-group-item');
$('[name=theme_materials_button][id='+id+']').attr('class', 'b-a list-group-item active');
$('[name=lesson_materials]').html('
');
$('[name=lesson_materials]').html(write_lesson_material(get_lesson_context(id)));
}
function show_homework_students(id){
$('[name=homework_students_button]').attr('class', 'b-a list-group-item');
$('[name=homework_students_button][id='+id+']').attr('class', 'b-a list-group-item active');
$('[name=homework_students]').hide();
$('[name=student_dialog]').hide();
$('[name=big_lesson_block]').hide();
$('[name=homework_students][id='+id+']').fadeIn(1000)
}
function show_homework_student_dialog(id){
if (typeof(id) != 'string'){
var block = $(id);
$('[name=student_dialog_button]').attr('class', 'b-a list-group-item');
$('[name=student_dialog_button][id='+block.attr('student_id')+']').attr('class', 'b-a list-group-item active');
$('[name=lesson_comments_block]').attr('lesson_id', block.attr('theme_id'));
$('[name=USER_ID]').val(block.attr('student_id'));
$('[name=THEME_ID]').val(block.attr('theme_id'));
$('[name=comment_for_user_id]').val(block.attr('student_id'));
$('[name=comment_for_theme_id]').val(block.attr('theme_id'));
$('[name=student_dialog]').hide();
$('[name=big_lesson_block]').show();
reload_lesson_comments()
} else {
$('[name=student_dialog_button]').attr('class', 'b-a list-group-item');
$('[name=student_dialog_button][id='+id+']').attr('class', 'b-a list-group-item active');
$('[name=big_lesson_block]').hide();
$('[name=student_dialog]').hide();
$('[name=student_dialog][id='+id+']').fadeIn(1000)
}
}
function show_one_lesson_comments(id){
$('[name=theme_listing]').hide();
$('[name=theme_materials_button]').attr('class', 'b-a list-group-item');
$('[name=theme_materials_button][id='+id+']').attr('class', 'b-a list-group-item active');
$('[name=lesson_comments_block]').attr('lesson_id', id);
$('[name=LESSON_ID]').val(id);
$('[name=comment_for_lesson_id]').val(id);
$('[name=big_lesson_block]').show();
reload_lesson_comments()
}
function show_lesson_comments(id){
$('[name=lesson_materials_button]').attr('class', 'b-a list-group-item');
$('[name=lesson_materials_button][id='+id+']').attr('class', 'b-a list-group-item active');
$('[name=lesson_comments_block]').attr('lesson_id', id);
$('[name=LESSON_ID]').val(id);
$('[name=comment_for_lesson_id]').val(id);
$('[name=big_lesson_block]').show();
reload_lesson_comments()
}
function write_lesson_material(context){
var data, materials, material;
if (context['materials']){
material = '';
for (var i=0; i