Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharityProgramView
Please create a React-JS view called "CharityProgramView" for the fields of the CharityProgram entity. The CharityProgramView must contain the following fields: - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: StartDate type: DATE An existing CharityProgram entity should be loaded from the relative URL: "/CharityOrganizationService/charityprogram/{id}" (HTTP-GET) If a new CharityProgram entity has been created, the new entity should be posted to the relative URL: "/CharityOrganizationService/charityprogram" (HTTP-POST) If an existing CharityProgram entity has been updated, the modified entity should be sent to the relative URL: "/CharityOrganizationService/charityprogram/{id}" (HTTP-PUT) If an existing CharityProgram entity has to be deleted, the following relative URL should be called: "/CharityOrganizationService/charityprogram/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CharityListing columns: - column: Notes - column: DonationAmountCap - column: DonationPercentage - column: CharityOrganization - column: Listing - column: CharityProgram The table should have the title "CharityListings" und the data must be loaded from the server with the following relative URL: "/CharityOrganizationService/charitylisting/charityprogram/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint