競技種目を選択して決定ボタンを押すと、選択した競技種目の結果を表示する。
result.mp4
メダルの総数順に各チームの獲得したメダルの個数を表示する。
medal.mp4
得点順に各チームがそれぞれの競技で獲得した得点を表示する。得点配分は以下の表のとおりである。
順位 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
得点 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 |
score.mp4
選手を選択して決定ボタンを押すと、選択した選手の結果を表示する。
athlete.mp4
チームを選択して決定ボタンを押すと、選択したチームの全選手の結果を表示する。
team.mp4
- manage.py:メインファイル
- conversion.py:tokyo2020.csvファイルの内容をdb.sqlite3ファイルにインポート
- requirements.txt:パッケージ一覧
- db.sqlite3:records_swimmingresult(id, sport, event, rank, athletes, team, record)
- tokyo2020.csv:1~8位のデータセット
- index.html:21世紀のオリンピックの開催年、都市、国の表示
- base.html:メタ情報やナビゲーションメニュー
- select_event.html:競技・種目の選択フォーム
- result.html:選択された種目の結果を表示
- medal.html:チーム別のメダルの個数
- score.html:チーム別の各競技で獲得した得点
- select_athlete.html:選手の選択フォーム
- athlete.html:選択された選手の結果を表示
- select_team.html:チームの選択フォーム
- team.html:選択されたチームの全結果を表示
When you select a competition event and click the decision button, the results of the selected event will be displayed.
Displays the number of medals won by each team in order of total number of medals.
Displays the points scored by each team in each event in order of score. The distribution of scores is shown in the table below.
Rank | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
Score | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 |
Select a player and click the decision button to display the results for the selected player.
Select a team and click the decision button to see the results of all players of the selected team.
- manage.py: Main file
- conversion.py: Insert contents of tokyo2020.csv file into db.sqlite3 file
- requirements.txt: Package List
- db.sqlite3: records_swimmingresult(id, sport, event, rank, athletes, team, record)
- tokyo2020.csv: Dataset of 1~8 ranks
- index.html: Display year, city, and country of the 21st century Olympics
- base.html: Meta information and navigation menu
- select_event.html: Selection form for events and disciplines
- result.html: Display of results for the selected event
- medal.html: Number of medals by team
- score.html: Scores won in each event by team
- select_athlete.html: Athlete selection form
- athlete.html: Display results of selected athlete
- select_team.html: Team selection form
- team.html: Display all results for the selected team