We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the side navbar for the admin dashboard, add a new entry called "Club Earnings" with an icon for the dollar sign on the same row.
Clicking the button should open a modal, the modal should have content like
Total earnings from new members this semester: $<whatever> Total new members this year: $<whatever> Current active members: $<whatever>
<whatever>
returns a json object like
{ "newSingleSemesterMembers": 20, "newAnnualMembers": 15, }
we can test the API with a simple HTTP GET request to verify the json object worked.
add a new row to the admin dashboard navbar called "Club Earnings"
clicking the button should show a modal. see the code for "reset password" as a good example
when the modal is clicked, we should call our API to get the relevant information, and calculate the money ($20 a semester, $30 for a year)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
On the side navbar for the admin dashboard, add a new entry called "Club Earnings" with an icon for the dollar sign on the same row.
Clicking the button should open a modal, the modal should have content like
Total earnings from new members this semester: $
<whatever>
Total new members this year: $
<whatever>
Current active members: $
<whatever>
game plan
returns a json object like
we can test the API with a simple HTTP GET request to verify the json object worked.
add a new row to the admin dashboard navbar called "Club Earnings"
clicking the button should show a modal. see the code for "reset password" as a good example
when the modal is clicked, we should call our API to get the relevant information, and calculate the money ($20 a semester, $30 for a year)
The text was updated successfully, but these errors were encountered: