Connect with us

Iowa

Iowa lawmakers advance bill to support sexual assault survivors

Published

on

Iowa lawmakers advance bill to support sexual assault survivors


House File 705 would fund nonprofit sexual assault forensic exam centers, aiming to improve care and evidence collection for survivors.

Advertisement

Iowa lawmakers advance bill to support sexual assault survivors

House File 705 would fund nonprofit sexual assault forensic exam centers, aiming to improve care and evidence collection for survivors.

Advertisement

COMPLAINT. HE’S SCHEDULED TO APPEAR IN COURT ON APRIL 17TH, LESS THAN TWO WEEKS REMAIN IN THE LEGISLATIVE SESSION HERE IN IOWA AS WE TAKE A LIVE LOOK FROM THE STATEHOUSE IN DOWNTOWN DES MOINES TODAY, A BILL TO EXPAND SERVICES FOR SEXUAL ASSAULT SURVIVORS IS MOVING FORWARD. HOUSE FILE 705 WOULD CREATE A GRANT PROGRAM TO SUPPORT NONPROFIT SEXUAL ASSAULT FORENSIC EXAM CENTERS ACROSS IOWA. SUPPORTERS SAY THE FUNDING WOULD HELP ENSURE VICTIMS HAVE ACCESS TO SPECIALIZED CARE AND EVIDENCE COLLECTION SERVICES. WHEN TYPICALLY OUR VICTIMS DON’T FEEL SEEN, THEY DON’T FEEL HEARD AND THEY DON’T FEEL RELIEVED TO JUST KNOW THAT TO MAKE IT THIS FAR, THE COMMUNITY DOES SEE THEM AND HEAR THEM. AND YOU KNOW, WE NEED YOUR HELP TO GET STARTED SO THAT WE CAN ENSURE THAT THOSE SERVICES ARE DELIVERABLE. YOU KNOW, WE CAN BUILD IT, BUT WE NEED WE NEED TO KEEP ACCESS OPEN AND AVAILABLE TO THEM BY BEING ABLE TO PROVIDE THAT. SO AND THE BILL PASSED

Advertisement

Iowa lawmakers advance bill to support sexual assault survivors

House File 705 would fund nonprofit sexual assault forensic exam centers, aiming to improve care and evidence collection for survivors.

Updated: 9:29 PM CDT Apr 8, 2026

Editorial Standards

Advertisement

Iowa lawmakers are advancing House File 705, a bill that would create a grant program to support nonprofit sexual assault forensic exam centers across the state. The bill passed a House subcommittee today and now heads to a full committee for further debate and a vote. It would require the attorney general’s office to contract with an Iowa-based nonprofit specializing in caring for survivors of sexual abuse or assault. Shannon Knudsen, who founded the S.A.F.E. Center of Iowa, says the funding would help ensure victims have access to specialized care and evidence collection services. “We need your help to get started so that we can ensure that those services are deliverable,” Knudsen said to lawmakers. “We can build it, but we need to keep access open and available to them.” Because this bill was filed under Appropriations, it did not have to pass by specific deadlines to stay active. The current session is set to end on April 21, which is when per diem ends for lawmakers. A statewide budget has to be passed by both chambers before lawmakers gavel out.

Iowa lawmakers are advancing House File 705, a bill that would create a grant program to support nonprofit sexual assault forensic exam centers across the state.

Advertisement

The bill passed a House subcommittee today and now heads to a full committee for further debate and a vote. It would require the attorney general’s office to contract with an Iowa-based nonprofit specializing in caring for survivors of sexual abuse or assault.

Shannon Knudsen, who founded the S.A.F.E. Center of Iowa, says the funding would help ensure victims have access to specialized care and evidence collection services.

“We need your help to get started so that we can ensure that those services are deliverable,” Knudsen said to lawmakers. “We can build it, but we need to keep access open and available to them.”

Advertisement

Because this bill was filed under Appropriations, it did not have to pass by specific deadlines to stay active. The current session is set to end on April 21, which is when per diem ends for lawmakers. A statewide budget has to be passed by both chambers before lawmakers gavel out.

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

Advertisement

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

Advertisement

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kcci.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.kcci.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

Advertisement

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kcci.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.kcci.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…



Source link

Advertisement

Iowa

Iowa GOP governor candidates debate education funding, abortion at first forum

Published

on

Iowa GOP governor candidates debate education funding, abortion at first forum


JOHNSTON, Iowa (Gray Media Iowa State Capitol Bureau)-Three Republican candidates for Iowa governor debated education policy and abortion at Iowa PBS, their first forum of the campaign.

The debate featured former Department of Administrative Services head Adam Steen, state Rep. Eddie Andrews and former state lawmaker Brad Sherman. Two other Republican candidates, Congressman Randy Feenstra and Zach Lahn, did not attend.

The candidates are running to replace Gov. Kim Reynolds, who is retiring.

All three candidates disagreed with Feenstra’s position that private schools should stop turning away students because of limited space or special needs, though they offered different explanations.

Advertisement

Education Savings Accounts, or ESAs, allow state funding to follow students to private schools.

Steen said Feenstra’s position on ESAs makes him sound like Democratic candidate Rob Sand. He said private schools should receive additional funding if they choose to accept students with special needs.

“I don’t think schools should be forced to receive who they want to receive,” Steen said. “Just because we have a situation right now in our family, we are not going to force a school to accept kids that they aren’t prepared for.”

Andrews voted for the ESA program in 2023. He said private schools are already working to accept more students with disabilities.

“I think most private schools want to accept those and are now looking to expand, change their infrastructure and certainly some of the larger ones are already doing that,” Andrews said.

Advertisement

Sherman said the focus should be on curriculum, not enrollment policies.

“The content of the education the children are getting, that’s why so many people are looking at ESAs because they are not satisfied with the education coming out of the public schools,” Sherman said.

All three candidates backed banning abortion altogether. Sherman said some women who receive abortions may need to be prosecuted. Steen said he wants to ban chemical abortions. Andrews said he wants more support for pregnant women.

The Republican primary is June 2. Rob Sand is the only Democratic candidate for governor.

Advertisement

Isabella Warren covers state government and politics for Gray Media-owned stations in Iowa. Email her at isabella.warren@kcrg.com; and follow her on Facebook at Isabella Warren TV on X/Twitter@isabellaw_gray, and on Instagram@IsabellaWarrenTV.

Copyright 2026 KCRG. All rights reserved.





Source link

Continue Reading

Iowa

Judge clears ICE’s path to deport asylum-seeker from Iowa to Congo

Published

on

Judge clears ICE’s path to deport asylum-seeker from Iowa to Congo


DES MOINES, Iowa (IOWA CAPITAL DISPATCH) – A federal judge has cleared the way for ICE officials to deport a Bolivian asylum-seeker from Iowa to the Democratic Republic of Congo.

Noting that José Yugar-Cruz is part of a class of people for whom the Supreme Court has twice issued orders lifting injunctions that prohibited such deportations, U.S. District Judge Stephen H. Locher ruled this week that he had “little choice” but to deny Yugar-Cruz’s motion to have the court block his removal from the United States.

Court records show that Yugar-Cruz, who is from Bolivia, entered the United States on July 8, 2024, at the Arizona border and immediately surrendered himself to law enforcement and was taken into custody.

In October 2024, Yugar-Cruz applied for asylum, citing a threat of torture in his home country. In December 2024, an immigration judge issued a “withholding of removal” order under the Convention Against Torture, based on the torture Yugar-Cruz had previously faced in Bolivia and likely would face again if returned to that country.

Advertisement

Although the federal government did not appeal the immigration judge’s ruling, it opted to keep Yugar-Cruz detained in jail while it searched for another country that would accept him if he were to be deported.

For 17 months, U.S. Immigration and Customs Enforcement kept Yugar-Cruz jailed while the agency tried without success to remove him to Argentina, Chile, Paraguay, Mexico and Canada.

In December 2025, Yugar-Cruz took ICE to court, seeking his release and arguing that his indefinite imprisonment was a violation of his rights given his lack of criminal history. The U.S. Department of Justice agreed Yugar-Cruz should be released from the Muscatine County Jail, subject to his continued supervision by ICE.

With his asylum case pending, Yugar-Cruz is detained again

With his asylum application still pending, Yugar-Cruz was released from jail. Days later, the Trump administration finalized a “Third-County Removal Agreement” with the government of the Democratic Republic of Congo, which pledged that deportees sent there from the United States would not be subject to persecution or torture.

On March 9, 2026, ICE officials learned Congo had formally agreed to accept Yugar-Cruz for third-country removal. On April 8, 2026, Yugar-Cruz was taken into custody during what he expected to be routine, address-verification visit to an ICE field office in Cedar Rapids.

Advertisement

On the day his deportation flight was scheduled to leave the United States, Yugar-Cruz won a temporary stay in the proceedings by arguing the federal government could not legally deport him.

As part of that case, attorneys for Yugar-Cruz argued their client was a member of a certified class in the case D.V.D. v. U.S. Department of Homeland Security. In that case, a Massachusetts court had entered a preliminary injunction blocking the government from removing noncitizens to third countries without first providing those individuals an opportunity to be heard on the matter.

In Monday’s ruling on Yugar-Cruz’s deportation, Locher wrote that the Massachusetts decision is “unquestionably favorable to Yugar-Cruz’s position … The problem for him, however, is that shortly thereafter the United States Supreme Court took the unusual step of granting a stay of the injunction.”

So, although the Massachusetts case is still pending, ICE’s process for deporting individuals to third countries remains legally valid, Locher noted.

“This is all but fatal to Yugar-Cruz’s claim,” Locher wrote. “He is a member of a class of people for whom the Supreme Court has twice issued orders lifting injunctions that prohibited third country removals like the one (the federal government is) attempting to carry out here. In other words, when a different district court tried to do what Yugar-Cruz is asking this court to do, the Supreme Court intervened twice to stop it … The court cannot award relief on a one-off basis that the Supreme Court would not allow to be awarded en masse.”

Advertisement

Some human rights organizations have objected to the United States’ deportations to Congo, citing the armed conflicts, yellow fever outbreaks and widespread poverty in the area.

Two weeks ago, 15 South American migrants and asylum seekers deported from the United States to the Democratic Republic of Congo claimed to be facing pressure to return to their countries of origin where they fled persecution or torture.

Some of the 15 told the Reuters news agency that since being deported, they’d been given no viable options other than going back to their home countries, and are currently stranded in Kinshasa, a city of 15 million people, with no money and no passports.

Copyright 2026 IOWA CAPITAL DISPATCH. All rights reserved.



Source link

Advertisement
Continue Reading

Iowa

Iowa community college enrollment rebounds to pre-pandemic levels

Published

on

Iowa community college enrollment rebounds to pre-pandemic levels


CEDAR RAPIDS, Iowa (KCRG) – A new state report shows more students are earning credentials tied directly to jobs as enrollment at community colleges is nearly back to pre-pandemic levels.

Students are training in-field for jobs hiring now at Kirkwood Community College in Cedar Rapids.

Shamar Benton is weeks away from graduating Kirkwood’s Construction Management program. He said community college gave him hands-on experience before entering the workforce.

“It’s a great program,” Benton said. “They put us through real life situations, and I feel like you don’t get that at other colleges.”

Advertisement

Statewide enrollment rebounds

The 2025 Annual Condition of Iowa’s Community Colleges report shows community college enrollment is rebounding, with Career and Technical Education programs driving more than three-quarters of degrees, and nine-in-ten graduates employed within a year.

Jennifer Bradley, vice president of academic affairs at Kirkwood, said students are interested in experiential learning.

Kirkwood said CTE programs are built around what local employers need to fill openings in areas like health care and construction.

“We are dedicated to making sure that students get those experiences in the classroom that are directly connected to what they can anticipate when they get out in industry,” Bradley said.

Benton said the smaller setting makes a difference. Fewer students per class means more one-on-one time with instructors.

Advertisement

“Kirkwood is together. It’s like a family,” Benton said.

Copyright 2026 KCRG. All rights reserved.



Source link

Continue Reading
Advertisement

Trending