logo

Project “Professor Tata Tsilosani Institute of Information Technologies”

On June 13, 2018, under the guidance of the Information Technology school and within the framework of social responsibility inclusive education project “Professor Tata Tsilosani Institute of Information Technologies”was implemented. This project has an annual character and the aim is, to develop computer skills for hearing impaired and development.
Within the framework of the project 203 public school students were trained: Natia Mirinashvili, Nantito Musaeva, Koba Chiladze, Diana Kusamashvili. The Academy provided the appropriate material for people with special needs and human resource allocation, On the basis of which students have mastered the Web Design Certificate Program.
The event was opened by the director of Business Academy of Georgia-SBA Ms. Ia Eradze. The event was attended by the representative of the Ministry of Education and Science of Georgia, Maia Tsuladze, The director of above mentioned school, NiNo Metreveli, Social service agenvy consultanc Lika Narftiashvili andf Modular program support expert Ekaterine Luashvili. They addressed the audience at the end of the meeting.
At the end of the event, pupils participating in the project were awarded with certificates. Wihin the framework of the project, an exibition of Mikheil Kokochashvili paintings was hels. The paintings will be at the academy for three days.
The Academy congratulates the graduates achieved success and wishes its practical usage.

 

Leave a Reply

თქვენი ელფოსტის მისამართი გამოქვეყნებული არ იყო. აუცილებელი ველები მონიშნულია *

document.addEventListener('DOMContentLoaded', () => { // Wait a bit more for dynamic content to load setTimeout(() => { const button = document.querySelector('.tutor-btn.tutor-btn-primary.tutor-btn-lg.tutor-btn-block'); if (!button) { console.log('Button not found'); return; } console.log('Button found:', button); // Change button text button.textContent = 'წინასწარი რეგისტრაცია'; // Try multiple ways to find the category let categoryText = ''; // Method 1: Look for the specific div structure const categoryDiv = document.querySelector('.tutor-meta.tutor-course-details-info'); if (categoryDiv) { const categoryLink = categoryDiv.querySelector('a'); if (categoryLink) { categoryText = categoryLink.textContent.trim(); } } // Method 2: If not found, search more broadly if (!categoryText) { const allLinks = document.querySelectorAll('a[href*="course-category"]'); if (allLinks.length > 0) { categoryText = allLinks[0].textContent.trim(); } } // Method 3: Search in all text containing "კატეგორია" if (!categoryText) { const allDivs = document.querySelectorAll('div'); for (let div of allDivs) { if (div.textContent.includes('კატეგორია:')) { const link = div.querySelector('a'); if (link) { categoryText = link.textContent.trim(); break; } } } } console.log('Category found:', categoryText); // Determine which URL to use based on category let targetUrl = ''; if (categoryText === 'პროფესიული კვალიფიკაციები' || categoryText === 'სრული ზოგადი განათლება') { targetUrl = 'https://docs.google.com/forms/d/10i--MdOOjI_aoqaZjaNRHkq7FMpESM6fui7brlH-5Vc/edit?usp=forms_home&ouid=114390394204825826874&ths=true'; console.log('Using first form URL'); } else if (categoryText === 'პროფესიული მომზადება' || categoryText === 'პროფესიული გადამზადება') { targetUrl = 'https://docs.google.com/forms/d/15vgvogv2oammJUqpGXHJYRp2DkirMyZ_rKKEtHsZ1oQ/edit'; console.log('Using second form URL'); } else { // Fallback to original URL if category doesn't match targetUrl = 'https://docs.google.com/forms/d/10i--MdOOjI_aoqaZjaNRHkq7FMpESM6fui7brlH-5Vc/edit'; console.log('Using fallback URL'); } // Update the button's parent link const link = button.closest('a'); if (link) { link.setAttribute('href', targetUrl); link.setAttribute('target', '_blank'); console.log('Link updated to:', targetUrl); } else { console.log('Parent link not found'); } }, 500); // Wait 500ms for page to fully load });// Keep the existing counter replacement logic document.querySelectorAll('span.counter').forEach(span => { if (span.textContent.trim() === "91") { let h4 = span.closest("h4"); if (h4) { h4.innerHTML = h4.innerHTML.replace("+", "%"); } } });