
    $(function(){
    if (window.location.pathname.includes('teach/control/stream/view')) {
    	$('body').append(`<link href="/pl/layout/38250/10/otherTrainings.css" rel="stylesheet">`)
    }
	let training = $('.stream-table tr');
	training.each(function(){
		if($(this).find('.stream-title').text().toLowerCase().includes('модуль')) {
			$(this).find('.stream-title').before(`<div class="module">${$(this).find('.stream-title').text().split(':')[0]}</div>`)
			$(this).find('.stream-title').text($(this).find('.stream-title').text().split(':')[1]);
		}
	})
})