get seed data seeding and improve application submitted button

This commit is contained in:
Michael Q Larson
2015-04-08 14:57:08 -07:00
parent c02fafa6a9
commit 29b4e3b970
6 changed files with 20 additions and 23 deletions

View File

@@ -88,16 +88,11 @@ exports.tellUsYourName = function(req, res) {
});
};
exports.finishApplication = function(req, res) {
res.render('nonprofits/you-have-finished-your-application', {
title: "You have finished your application",
step: 10
});
};
exports.yourNonprofitProjectApplicationHasBeenSubmitted = function(req, res) {
res.render('nonprofits/your-nonprofit-project-application-has-been-submitted', {
title: 'Your Nonprofit Project application has been submitted!'
title: 'Your Nonprofit Project application has been submitted!',
step: 10,
getBackDay: moment().weekday(5).format('dddd')
});
};
@@ -163,7 +158,8 @@ exports.returnIndividualNonprofit = function(req, res, next) {
whatDoesNonprofitDo: nonprofit.whatDoesNonprofitDo,
interestedCampers: nonprofit.interestedCampers,
assignedCampers: nonprofit.assignedCampers,
buttonActive: buttonActive
buttonActive: buttonActive,
currentStatus: nonprofit.currentStatus
});
});
};