// ЭТО НЕ РАБОТАЕТ ПОЖАЛУЙСТА, ПОМОГИТЕ
app.get ("/ dish /: id", function (req, res) {
dishes.findById(req.params.id, function(err, founddishes){
if(err){
console.log(err);
} else {
// Render show template with that campground
res.render("show", {dishes: founddishes});
}
});
});