Closed jrargent closed 1 year ago
Thoughts on how to update the goal % bar on individual donation pages: will need to put in some logic to query all donation amounts, add together, and divide by projectGoal amount
some js file to do
const goal = (query projectGoal amount logic);
const totalDonations = (query all donation amounts and add together);
const goal% = goal/totalDonations;
Then update the progress bar div class (w-50 currently) reflect that % and update the value in div to same (currently "50%")
ex <div class="w-{goal%}" >{goal%}%</div> or something like that
Need to add progress bar code to all project-related pages