show author in article show page

chooseauthorfromarticle
Matt Huntington 9 years ago
parent f1a39bdc6b
commit 3126a68d18

@ -32,8 +32,11 @@ router.post('/', function(req, res){
router.get('/:id', function(req,res){
Article.findById(req.params.id, function(err, foundArticle){
res.render('articles/show.ejs', {
article: foundArticle
Author.findOne({'articles._id':req.params.id}, function(err, foundAuthor){
res.render('articles/show.ejs', {
author: foundAuthor,
article: foundArticle
});
});
});
});

@ -6,7 +6,7 @@
</head>
<body>
<header>
<h1><%=article.title%></h1>
<h1><%=article.title%> by <%=author.name%></h1>
<nav>
<ul>
<li>

Loading…
Cancel
Save