Overview
Summary
Contact
Donate
Imprint
Prompt for the
PrizeCompetitionView
Please create a React-JS view called "PrizeCompetitionView" for the fields of the PrizeCompetition entity. The PrizeCompetitionView must contain the following fields: - name: Currency type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: PrizeAmount type: STRING - name: RecommendationAlgorithm type: RecommendationAlgorithm - name: StartDate type: DATE The data source for the [RecommendationAlgorithm] select control should be loaded from the relative URL: "/RecommendationAlgorithmService/recommendationalgorithm" (HTTP-GET) An existing PrizeCompetition entity should be loaded from the relative URL: "/RecommendationAlgorithmService/prizecompetition/{id}" (HTTP-GET) If a new PrizeCompetition entity has been created, the new entity should be posted to the relative URL: "/RecommendationAlgorithmService/prizecompetition" (HTTP-POST) If an existing PrizeCompetition entity has been updated, the modified entity should be sent to the relative URL: "/RecommendationAlgorithmService/prizecompetition/{id}" (HTTP-PUT) If an existing PrizeCompetition entity has to be deleted, the following relative URL should be called: "/RecommendationAlgorithmService/prizecompetition/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PrizeTeam columns: - column: Name - column: Country - column: PrizeCompetition - column: Notes The table should have the title "PrizeTeams" und the data must be loaded from the server with the following relative URL: "/RecommendationAlgorithmService/prizeteam/prizecompetition/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint