Riesenkürbis Jaune Gros de Paris Hersteller: Grüne Fee Artikelnummer: 11250-cp EAN: 4001336112500 ${ $translate("cnTheme::Template.templateBestBefore") }: min. 01/2024 Inhalt: ausreichend für ca. 7 Pflanzen
Merkliste
Artikelbewertungen
Riesenkürbis Jaune Gros de Paris
* inkl. 7% MwSt.
zzgl.
Versandkosten
sofort lieferbar
gilt für 64 Stück am Lager.
Riesenkürbis, Jaune Gros de Paris Cucurbita maxima Duchesne Großer Speisekürbis mit festem, gelben Fleisch, angenehmer Geschmack, lange lagerfähig, gut zum Einkochen geeignet, Fruchtgewicht bis zu 50 kgAussaat im Haus AprilAussaat Freiland Mitte Mai - JuniErnte September - OktoberPflanzabstand 10 - 12 Pflanzen/10 m²Pflanztiefe/Saattiefe 2-3 cmStandort SonnigLebenszyklus Einjährig
Aussaat
Aussaat Haus
Blüte
Jan. Feb. Mär. Apr.
Mai
Jun.
Jul. Aug. Sep.
Okt.
Nov. Dez.
Andere Kunden kauften auch Zurück zur Übersicht
if ($("#itemFeedback").data("show-reasons")) $("#itemFeedback-explanation").hide()
else $("#itemFeedback-reason").hide()
$("#itemFeedback-question__yes").on("click", () => {
const $container = $("#itemFeedback")
const data = {
id: $container.data("id"),
type: $container.attr("id"),
url: window.location.href,
yesOrNo: 'yes'
};
$.ajax({
type: "POST",
url: "/rest/pollfeedback/",
data,
error: console.log
});
if ($container.data("has-no-thanks")) {
$("#itemFeedback-header").css("border-bottom", "none");
$("#itemFeedback-body").css("padding", "0");
}
$("#itemFeedback-heading").text("Vielen Dank für Ihr Feedback!")
$("#itemFeedback-question").hide()
$("#itemFeedback-thanks").show()
})
$("#itemFeedback-question__no").on("click", () => {
const $container = $("#itemFeedback")
const data = {
id: $container.data("id"),
type: $container.attr("id"),
url: window.location.href,
yesOrNo: 'no'
};
$.ajax({
type: "POST",
url: "/rest/pollfeedback/",
data,
error: console.log
});
})
$("#itemFeedback-close").on("click", () => {
$("#itemFeedback-question").hide()
$("#itemFeedback-thanks").show()
})
$(".itemFeedback-reason__btn").on("click", (e) => {
const $container = $("#itemFeedback")
const $pressedButton = $(e.target)
const reason = $pressedButton.data("reason")
const data = {
id: $container.data("id"),
reason
};
$.ajax({
type: "POST",
url: "/rest/pollfeedback-reason/",
data,
error: console.log
});
$("#itemFeedback-form__reason").text($pressedButton.text())
$("#itemFeedback-reason").hide()
$("#itemFeedback-explanation").show()
})
$("#itemFeedback-form").on("submit", (e) => {
e.preventDefault()
const $container = $("#itemFeedback")
const explanation = $("#itemFeedback-form__feedback").val()
const data = {
id: $container.data("id"),
explanation
};
$.ajax({
type: "POST",
url: "/rest/pollfeedback-explanation/",
data,
error: console.log
});
if ($container.data("has-no-thanks")) {
$("#itemFeedback-header").css("border-bottom", "none");
$("#itemFeedback-body").css("padding", "0");
}
$("#itemFeedback-heading").text("Vielen Dank für Ihr Feedback!")
$("#itemFeedback-question").hide()
$("#itemFeedback-thanks").show()
$("#itemFeedback-close").click()
})