ADVERTISEMENT
970x220

Robredo looks back on OVP's pandemic response in 2021

Published Jan 2, 2022 06:19 pm

Fresh from her disaster relief operations in the Visayas and Mindanao region, presidential aspirant Vice President Leni Robredo revisited her office’s pandemic response initiatives last year.

OVP staff and volunteers pack medical supplies for their COVID-19 response project in Palawan (Photo from Vice President Leni Robredo’s Facebook page)

The Vice President, who is under quarantine after being exposed to a close-in security who tested positive to COVID-19, was not in her weekly radio show over dzXL.

This year’s first episode instead showed Robredo’s various projects during her term, as well as her office’s pandemic response programs.

“Batid ng Tanggapan ni VP Leni ang mga hamong kaakibat ng krisis na ito, kaya agad itong kumilos para matugunan ang pangangailangan at gumaang ang pasanin ng Pilipino (The office of VP Leni understands the challenges that come with this crisis, that’s why it readily acted to address the needs and lift the burden of the Filipinos),” the video said.

Swab Cab

The Office of the Vice President (OVP) understood that to control the spread of the virus, more testing needs to be done. This is why Robredo launched the Swab Cab project.

This project aimed to provide “testing support” to risky communities or areas with high COVID-19 transmission at infection rates.

The OVP spent ₱11 million for 22,000 antigen test kits, which complemented the RT-PCR tests done on those who tested positive for the antigen tests.

READ: Time to speed up vaccine rollout in provinces—Robredo

The initiative conducted 9,757 tests in hotspots such as Malabon, Quezon City, Marikina City, Imus, Tuguegarao, and Naga.

Aside from the Swab Cab, the OVP also allocated P45.86 million for 35,656 extraction and detection kits.

Vaccine Express

In June, the OVP launched the Vaccine Express initiative to “expand” the vaccination programs of local governments.

Robredo brought the initiative to Cagayan de Oro, Misamis Oriental; Iriga and Naga, Camarines Sur; San Pedro, Laguna; Magalang and San Fernando City, Pampanga; Capas, Tarlac; Malolos, Bulacan; Mariveles, Bataan; Catanduanes; and Manila, Pasig, and Quezon City.

This led to a total of 45,896 vaccine recipients.

The OVP partnered with local governments to access its supply of vaccines.

Bayanihan E-Konsulta

During the outbreak in April last year, Robredo also launched the Bayanihan E-Konsulta, a free telemedicine program that helped indigent and vulnerable families. The telemedicine is for COVID and non-COVID patients.

READ: Robredo takes E-Konsulta graveyard shift to handle COVID-19 calls

“Layunin rin nitong tulungang ma-decongest ang mga ospital at mabigyan ng sapat na atensyong medikal ang mga nangangailangan (Its goal is to help decongest hospitals and give enough medical attention to those in need),” the video narrator said.

The Bayanihan E-Konsulta was made possible because of the OVP’s medical and non-medical volunteers.

To date, the program has 4,271 external volunteers and 1,327 volunteer doctors.

They processed 45,990 requests and gave out 9,556 COVID-19 care kits, which were given to COVID positive patients of Bayanihan E-Konsulta.

The OVP also provided medical assistance to probable and confirmed cases in the National Capital Region (NCR) and nearby provinces.

Related Tags

Vaccine Express VP Leni Robredo COVID-19 response OVP Bayanihan E-Konsulta Swab Cab
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.