`;
verfuegbareTarife.forEach(tarif => {
let logoAusgabe = `
${tarif.name}`;
if (tarif.logo_url && tarif.logo_url.startsWith("http")) {
logoAusgabe = `

`;
}
tabelleHTML += `
${logoAusgabe}
DSL
DSL:
${tarif.dsl_preis ? `
${tarif.dsl_speed || ''}
${tarif.dsl_preis} €
Details
` : '
—'}
Kabel
Kabel:
${tarif.kabel_preis ? `
${tarif.kabel_speed || ''}
${tarif.kabel_preis} €
Details
` : '
—'}
Glasfaser
Glasfaser:
${tarif.glasfaser_preis ? `
${tarif.glasfaser_speed || ''}
${tarif.glasfaser_preis} €
Details
` : '
—'}
TV-Option
TV:
${tarif.tv_preis ? `
${tarif.tv_option || 'Inklusive'}
${tarif.tv_preis} €
Details
` : '
—'}
`;
});
tabelleHTML += `
`;
wrapper.innerHTML = tabelleHTML;
toolArea.style.display = "block";
})
.catch(err => {
console.error("Fehler beim Laden der Tarife:", err);
errorBox.textContent = "Fehler beim Laden der Tarifdaten. Bitte versuchen Sie es später erneut.";
});
});
});