ADVERTISEMENT

Teachers urge Marcos admin to ensure 'safe' 100% resumption of face-to-face classes

Published Jul 6, 2022 01:48 pm

Following the government’s announcement of its plan to fully implement 100 percent face-to-face classes by November, teachers’ groups on Wednesday, July 6, said that measures that would ensure the safety of both teachers and students should be in place first.

(MANNY LLANES / MANILA BULLETIN)

The Alliance of Concerned Teachers (ACT) Philippines and Teachers’ Dignity Coalition (TDC), in separate statements, urged the Marcos administration --- particularly the Department of Education (DepEd) headed by Vice President Sara Duterte as Education Secretary --- to address the “urgent requisites” for full in-person classes.

“It would be hard for students, teachers, and parents to all go to school and encounter another surge of Covid-19, so we need to be careful and prepared,” ACT Philippines Chairperson Vladimer Quetua said.

TDC, on the other hand, reiterated its support for the resumption of in-person classes this incoming School Year (SY) 2022-2023.

“Our children have already suffered terribly under a distance learning set-up,” TDC National Chair Benjo Basas said. “But still, we need to prepare our schools if we project a 100 percent resumption,” he added.

Address urgent issues

Citing the result of the survey conducted by the Movement for Safe, Equitable, Quality, and Relevant (SEQuRe) Education on the initial face-to-face classes already held, ACT said that the Marcos administration has “a long way to go” if wants to open all the schools for 100 percent in-person learning.

The SEQuRE survey showed that government funding and support were “insufficient” which compelled 59 to 83 percent of teacher-respondents to “spend out-of-pocket to prepare schools and classrooms for safe reopening.

ACT also noted that based on the survey, “some important safety measures were still not sufficiently installed.”

Given this, ACT has raised some requisites to address the issues raised by the survey to have safe 100% face-to-face classes.

These include doubling school maintenance and operating budget for proper and adequate ventilation/air flow of classrooms; sufficient hand-washing facilities and water supply; operational clinic with adequate supplies and equipment; and ample health and sanitation supplies and enforcement of health protocols.

The Marcos admin was also urged to employ additional teachers to be able to implement the ideal class size of a maximum of 35 students.

Nurses and utility personnel, ACT said, must also be employed for every school.

To ensure the health protection and benefits of teachers and non-teaching staff, ACT said that the government must ensure free medical check-ups and treatment; 15-day sick leave for teachers; additional compensation for teaching overload and non-teaching duties for teachers, as well as overtime for teachers and employees; and timely and just payment of Special Hardship Allowance for teachers.

The government, ACT said, must also provide “aid for struggling families in the midst of the economic crisis.”

Moreover, ACT urged the Marcos administration --- through DepEd --- to conduct a learning assessment of students nationwide to “guide the curriculum adjustments” for the education recovery program.

“These are some of the requisites for a safe back-to-school program this year because we need to address the 'old normal' problems to enable a safe 100 percent school reopening,” Quetua said.

TDC, on the other hand, also underscored the importance of ensuring that learners and teachers are safe. This, the group said, would require several adjustments --- especially in class size and physical facilities.

“Definitely we'll be needing more classrooms and more teachers to effectively handle the delivery of education service, post-pandemic,” Basas said.

Related Tags

SY 2022-2023 deped education FACE-TO-FACE CLASSES in-person classes covid-19 Sara Duterte
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.